Searched refs:propVal (Results 1 - 10 of 10) sorted by relevance

/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/
H A DPropertyResolver.java96 String propVal = null;
102 return propVal;
119 String propVal = null;
122 propVal = getPropertyValue(propName, _server.getSystemProperty());
124 if (propVal == null) {
128 propVal = getPropertyValue(propName, _cluster.getSystemProperty());
130 if (propVal == null) {
134 propVal = getPropertyValue(propName, _config.getSystemProperty());
135 if (propVal == null) {
139 propVal
[all...]
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/api/
H A DRelativePathResolver.java127 String propVal;
134 propVal = getPropertyValue(propNames[i], true);
135 if (propVal != null) {
138 propVal = propVal.replace(File.separatorChar, '/');
139 startIdx = path.indexOf(propVal);
143 path.substring(startIdx + propVal.length());
265 String propVal;
294 propVal = getPropertyValue(propName.toString(), bIncludingEnvironmentVariables);
295 if (propVal !
[all...]
/glassfish-3.1.2/persistence/cmp/ejb-mapping/src/main/java/com/sun/jdo/api/persistence/mapping/ejb/
H A DSunCmpMappingsUtils.java176 * @param propVal the value of the element
180 protected static List findCompatibleBeansWithValue(BaseBean root, String propName, String propVal, Class type) throws IllegalArgumentException { argument
186 String[] props = root.findPropertyValue(propName, propVal);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/
H A DSelectorContext.java576 * @param propVal the value of the property to add; may not be null
579 public Object addToEnvironment(String propName, Object propVal) argument
581 return getBoundContext().addToEnvironment(propName, propVal);
H A DNamingContext.java707 * @param propVal the value of the property to add; may not be null
710 public Object addToEnvironment(String propName, Object propVal) argument
712 return env.put(propName, propVal);
/glassfish-3.1.2/common/glassfish-naming/src/main/java/com/sun/enterprise/naming/impl/
H A DJavaURLContext.java512 public Object addToEnvironment(String propName, Object propVal) argument
517 return myEnv.put(propName, propVal);
H A DTransientContext.java672 public Object addToEnvironment(String propName, Object propVal) argument
679 return myEnv.put(propName, propVal);
H A DSerialContext.java1048 public Object addToEnvironment(String propName, Object propVal) argument
1053 return myEnv.put(propName, propVal);
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DBaseDirContext.java693 * @param propVal the value of the property to add; may not be null
696 public Object addToEnvironment(String propName, Object propVal) argument
698 return env.put(propName, propVal);
H A DProxyDirContext.java755 * @param propVal the value of the property to add; may not be null
758 public Object addToEnvironment(String propName, Object propVal) argument
760 return dirContext.addToEnvironment(propName, propVal);

Completed in 33 milliseconds