Searched defs:from (Results 1 - 16 of 16) sorted by relevance

/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/registry/
H A DMonitoringLevelListener.java45 * be received for change in monitoring level from a prior
67 * @param from the MonitoringLevel before the change
72 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
95 * @param from the MonitoringLevel before the change
99 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
/glassfish-3.1.2/admin/util/src/main/java/com/sun/enterprise/admin/util/jmx/
H A DAttributeListUtils.java208 private static String[] getCamelCaseArray(final String[] from) { argument
209 final String[] humps = new String[from.length];
210 for (int i = 0 ; i < from.length ; i++) {
211 final StringBuffer sb = new StringBuffer(from[i]);
/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/config/
H A DMailResourceConfigTest.java130 final String from,
132 return ss.getResourcesConfig().createMailResourceConfig(name, host, user, from, optional);
125 createInstance( final DomainConfig ss, final String name, final String host, final String user, final String from, Map<String, String> optional) argument
/glassfish-3.1.2/transaction/jts/src/main/java/com/sun/jts/jtsxa/
H A DXID.java92 private int gtrid_length; // Value from 1 through 64
97 private int bqual_length; // Value from 1 through 64
157 * @param from the XID to initialize this XID from
160 public void copy(XID from) { argument
164 if (from == null) // If source is physically null
169 if (from.formatID == (-1)) // If source is a NULL transaction
174 gtrid_length= from.gtrid_length;
175 bqual_length= from.bqual_length;
177 if (data != null && from
195 copy(otid_t from) argument
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/
H A DVirtualServerPipeline.java162 * @param from URI prefix to match
168 void addRedirect(String from, String url, String urlPrefix, argument
175 redirects.add(new RedirectParameters(from, url, urlPrefix, escape));
218 // Determine the longest 'from' URI prefix match
222 String elemFromWithTrailingSlash = elem.from;
226 if (requestURI.equals(elem.from) ||
229 if (elem.from.length() > redirectMatch.from.length()) {
242 redirectMatch.from.length());
243 if ("/".equals(redirectMatch.from)) {
326 private String from; field in class:VirtualServerPipeline.RedirectParameters
344 RedirectParameters(String from, String url, String urlPrefix, boolean isEscape) argument
[all...]
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/connector/extension/
H A DGrizzlyConfig.java198 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
213 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
/glassfish-3.1.2/admin/jmx-remote/server/src/main/java/com/sun/enterprise/admin/jmx/remote/server/
H A DMBeanServerRequestHandler.java78 /** Handles the request that is received from the servlet. Responsible for
169 * come from deployment descriptor, but for now I am hardcoding it -- 08/04/03.
204 private MBeanServerRequestMessage removeVersion(MBeanServerRequestMessage from) { argument
205 final int id = from.getMethodId();
206 final Subject s = from.getDelegationSubject();
207 final Shifter sh = new Shifter(from.getParams());
/glassfish-3.1.2/cluster/common/src/main/java/com/sun/enterprise/util/cluster/windows/io/
H A DWindowsRemoteFile.java241 * Copies from sin to this WindowsRemoteFile
298 public final void copyFrom(File from, WindowsRemoteFileCopyProgress progress) argument
302 if (from == null || !from.isFile())
303 throw new IllegalArgumentException("copyFrom file arg is bad: " + from);
305 long filesize = from.length();
306 BufferedInputStream sin = new BufferedInputStream(new FileInputStream(from));
318 * Use this for tiny files -- like scripts that are created on-the-fly from a String
320 public final void copyFrom(Collection<String> from) throws WindowsException { argument
321 if (from
336 copyFrom(String from) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DOrderingDescriptor.java274 private static Edge getEdge(Node from, Node to, Map<Node, Map<Node, Edge>> map) { argument
276 Map<Node, Edge> node2Edge = map.get(from);
279 map.put(from, node2Edge);
284 edge = new Edge(from, to);
349 // remove corresponding incoming edge from the outNode
522 private Edge(Node from, Node to) { argument
523 fromNode = from;
H A DMethodDescriptor.java136 /** Construct an exact method descriptor from the given method object, classloader and ejb descriptor.
144 /** Construct an method descriptor from the given method object.
423 * Performs a conversion from the style1 style2 and style3 (no interface symbol) to
669 private String[] xmlFormat2JavaClassNames (String[] from) { argument
670 String[] to = new String[from.length];
671 for (int i=0; i<from.length; i++) {
672 to[i] = xmlFormat2JavaClassNames (from[i]);
677 // Convert arrays from form int[][][] to [[[L form.
725 // Convert arrays from [[[I form to int[][][] form.
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/util/
H A DTypeUtil.java253 * @param from the array of strings to convert
256 public static String arrayToString(String[] from, String separator) { argument
259 for (int i = 0; i < from.length; i++) {
261 sb.append(from[i]);
271 * @param from the string to convert
274 public static String[] stringToArray(String from, String separator) { argument
275 if (from == null) {
281 StringTokenizer toks = new StringTokenizer(from, separator);
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/stats/
H A DMonitoringRegistryMediator.java208 public void changeLevel(MonitoringLevel from, MonitoringLevel to, argument
231 + "changed from: "
/glassfish-3.1.2/admin/launcher/src/main/java/com/sun/enterprise/admin/launcher/
H A DGFLauncher.java387 private void move(File from, File to) throws IOException { argument
388 FileUtils.copy(from, to);
390 if (!from.delete())
391 from.deleteOnExit();
623 // 2. <system-property>'s from domain.xml
674 // first choice is from domain.xml
678 // second choice is from asenv
736 // add JVM options from Profiler *last* so they override config's
779 * Because of some issues in GlassFish OSGi launcher, a server updated from version 3.0.x to 3.1 won't start
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/
H A DResourceUtil.java115 //TODO this is copied from org.jvnet.hk2.config.Dom. If we are not able to encapsulate the conversion in Dom,
424 protected static void copyParameterMetaDataAttribute(ParameterMetaData from, ParameterMetaData to, String key) { argument
425 if (from.getAttributeValue(key) != null) {
426 to.putAttribute(key, from.getAttributeValue(key));
507 //removes entries with empty value from the given Map
610 //Construct parameter meta-data from the model
626 //Construct parameter meta-data from the attribute annotation
664 //returns true only if the request is from browser
731 * @return A copy of given <code>sourceData</code> where key of each entry from it is converted to xml name
917 //TODO carried forward from ol
[all...]
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/io/
H A DFileUtils.java418 *Resolve any links up-stream from this parent directory and
745 * @param from Name of file to copy
749 public static void copy(String from, String to) throws IOException { argument
750 //if(!StringUtils.ok(from) || !StringUtils.ok(to))
751 if (from == null || to == null)
754 File fin = new File(from);
828 * are protected from interpretation by a Unix or Windows command shell.
989 * from a code not within try-catch. Note that NPE will be thrown if either
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/archivist/
H A DArchivist.java173 * initializes this instance from another archivist, this is used
256 // populated from previus reading of the standard deployment descriptor
713 // try to read from the legacy sun deployment descriptor
748 * many file) from a deployment plan archive, set the corresponding
775 * many file) from a deployment plan archive, set the corresponding
827 * @param in archive to copy old elements from
916 * @param entriesToSkip files to not write from the original archive
1475 // copy all entries from source to target except the
1528 * @return the list of files that should not be copied from the old archive
1601 * @param ignoreList vector of entry name to not copy from t
1635 renameTmp(String from, String to) argument
[all...]

Completed in 78 milliseconds