Searched +defs:val +defs:name (Results 1 - 12 of 12) sorted by relevance

/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/
H A DLongOption.java26 * "Portions Copyright [year] [name of copyright owner]"
45 protected String name; field in class:LongOption
50 public LongOption(String name, boolean arg, StringBuffer hld, int val) { argument
51 this.name = name;
54 value = val;
62 return name;
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/
H A DJniHandler.java26 * "Portions Copyright [year] [name of copyright owner]"
140 ":type=JkHandler, name=apr");
234 public void setNativeAttribute(String name, String val) throws IOException { argument
238 log.severe( "Unitialized component " + name+ " " + val );
244 apr.jkSetAttribute( xEnv, nativeJkHandlerP, name, val );
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/util/
H A DDomUtil.java26 * "Portions Copyright [year] [name of copyright owner]"
110 * @param name name of the element. If null return the first element.
112 public static Node getChild( Node parent, String name ) {
119 //System.out.println("getNode: " + name + " " + node.getNodeName());
122 if( name != null &&
123 name.equals( node.getNodeName() ) ) {
126 if( name == null ) {
141 public static void setAttribute(Node node, String attName, String val) { argument
144 attNode.setNodeValue( val );
156 setText(Node node, String val) argument
230 getNext( Node current, String name, int type) argument
[all...]
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/io/
H A DEJBObjectOutputStream.java26 * "Portions Copyright [year] [name of copyright owner]"
167 // the name of the client wrapper class.
229 private String name; field in class:SerializableJNDIContext
242 this.name = ctx.getNameInNamespace();
254 if ((name == null) || (name.length() == 0)) {
257 return Globals.getDefaultHabitat().getComponent(GlassfishNamingManager.class).restoreJavaCompEnvContext(name);
368 // If 3.0 Remote business view, the name of the remote business
385 void setSFSBClientVersion(Object key, long val) { argument
387 this.sfsbClientVersion = val;
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/ssi/
H A DSSIMediator.java26 * "Portions Copyright [year] [name of copyright owner]"
185 String name = iter.next();
186 if (isNameReserved(name)) {
210 protected boolean isNameReserved(String name) { argument
211 return name.startsWith(className + ".");
252 public String substituteVariables(String val) { argument
255 if (val.indexOf('$') < 0 && val.indexOf('&') < 0) return val;
258 val
[all...]
/glassfish-3.1.2/cluster/cli/src/main/java/com/sun/enterprise/admin/cli/cluster/
H A DNativeRemoteCommandsBase.java26 * "Portions Copyright [year] [name of copyright owner]"
201 private String getFromPasswordFile(String name) { argument
202 return passwords.get(name);
205 boolean isValidAnswer(String val) { argument
206 return val.equalsIgnoreCase("yes") || val.equalsIgnoreCase("no")
207 || val.equalsIgnoreCase("y") || val.equalsIgnoreCase("n");
/glassfish-3.1.2/ejb/ejb-container/src/main/java/com/sun/ejb/base/stats/
H A DStatefulSessionStoreStatsImpl.java26 * "Portions Copyright [year] [name of copyright owner]"
337 void setActivationSize(long val) { argument
339 activationSize.setCount(val);
343 void setActivationTime(long val) { argument
345 activationTime.setCount(val);
349 void setPassivationSize(long val) { argument
351 passivationSize.setCount(val);
355 void setPassivationTime(long val) { argument
357 passivationTime.setCount(val);
361 void incrementExpiredSessionCountVal(long val) { argument
395 appendTimeStatistic(StringBuffer sbuf, String name, MutableAverageRangeStatisticImpl stat) argument
[all...]
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DResourceAttributes.java26 * "Portions Copyright [year] [name of copyright owner]"
288 protected String name = null; field in class:ResourceAttributes
698 * Get name.
703 if (name != null)
704 return name;
709 name = attribute.get().toString();
715 return name;
720 * Set name.
722 * @param name New name valu
724 setName(String name) argument
921 put(String attrID, Object val) argument
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/com/sun/enterprise/web/connector/grizzly/
H A DCoyoteConnectorLauncher.java26 * "Portions Copyright [year] [name of copyright owner]"
131 public void setAttribute( String name, Object value ) { argument
133 log.finest(sm.getString("http11protocol.setattribute", name,
135 attributes.put(name, value);
137 if ("maxKeepAliveRequests".equals(name)) {
139 } else if ("port".equals(name)) {
152 public void setProperty(String name, String value) { argument
153 setAttribute(name, value);
159 public String getProperty(String name) { argument
160 return (String)getAttribute(name);
391 string2SocketFactory( String val) argument
432 preRegister(MBeanServer server, ObjectName name) argument
[all...]
/glassfish-3.1.2/security/ejb.security/src/main/java/com/sun/enterprise/iiop/security/
H A DSecurityMechanismSelector.java26 * "Portions Copyright [year] [name of copyright owner]"
321 public void setServerTrustedHosts(String[] val) {
322 this.serverTrustedHosts = val;
331 public void setOrb(ORB val) { argument
332 this.orb = val;
610 * Get the security context to propagate principal/distinguished name
662 // propagate principal/certificate/distinguished name
730 // lookup and get domain name
740 _logger.log(Level.FINE, " the domain name is = "+ domain);
847 /** lookup the realm name tha
1636 getSecurityMechanismString(CSIV2TaggedComponentInfo tCI, CompoundSecMech[] list, String name) argument
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/
H A DEjbDescriptor.java26 * "Portions Copyright [year] [name of copyright owner]"
285 public void setRemoteHomeImplClassName(String name) { argument
286 this.remoteHomeImplClassName = name;
299 public void setLocalHomeImplClassName(String name) { argument
300 this.localHomeImplClassName = name;
314 public void setEJBLocalObjectImplClassName(String name) { argument
315 this.ejbLocalObjectImplClassName = name;
329 public void setEJBObjectImplClassName(String name) { argument
330 this.ejbObjectImplClassName = name;
637 * for this bean. This list does not include the name o
1098 addIORConfigurationDescriptor(EjbIORConfigurationDescriptor val) argument
1639 getServiceReferenceByName(String name) argument
1703 getMessageDestinationReferenceByName(String name) argument
1759 getJmsDestinationReferenceByName( String name) argument
1826 getEnvironmentPropertyByName(String name) argument
1898 getEntityManagerFactoryReferenceByName(String name) argument
1950 getEntityManagerReferenceByName( String name) argument
2044 getResourceReferenceByName(String name) argument
2101 getEjbReference(String name) argument
[all...]
/glassfish-3.1.2/tests/jbi/lib/
H A Dreporter.jar ... String) throws org.xml.sax.SAXException String name } com/sun/ejte/ccl/reporter/ParseML.class ParseML. ...

Completed in 148 milliseconds