Searched defs:propertyValue (Results 1 - 8 of 8) sorted by relevance
/glassfish-3.1.2/ejb/javax.ejb/src/main/java/javax/ejb/ |
H A D | ActivationConfigProperty.java | 83 String propertyValue(); method in interface:ActivationConfigProperty
|
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/common/util/logging/ |
H A D | LoggingConfig.java | 58 /* set propertyName to be propertyValue. The logManager 62 String setLoggingProperty(String propertyName, String propertyValue) throws IOException; argument 64 /* set propertyName to be propertyValue. The logManager 68 String setLoggingProperty(String propertyName, String propertyValue, String targetServer) throws IOException; argument
|
H A D | LoggingConfigImpl.java | 199 * setLoggingProperty() sets an existing propertyName to be propertyValue 204 * @param propertyValue Value to set 207 public String setLoggingProperty(String propertyName, String propertyValue) throws IOException { argument 212 if (propertyValue == null) return null; 218 String property = (String) props.setProperty(key, propertyValue); 220 setWebLoggers(propertyValue); 231 * setLoggingProperty() sets an existing propertyName to be propertyValue 236 * @param propertyValue Value to set 239 public String setLoggingProperty(String propertyName, String propertyValue, String targetConfigName) throws IOException { argument 244 if (propertyValue [all...] |
/glassfish-3.1.2/admin/rest/src/test/java/org/glassfish/admin/rest/ |
H A D | SystemPropertiesTest.java | 170 protected void createAndTestConfigProperty(final String propertyName, final String propertyValue, String configName) { argument 172 put(propertyName, propertyValue); 183 assertEquals(sysProp.get("value"), propertyValue); 186 protected void createAndTestClusterOverride(final String propertyName, final String defaultValue, final String propertyValue, final String clusterName) { argument 196 put(propertyName, propertyValue); 205 assertEquals(sysProp.get("value"), propertyValue); 209 protected void createAndTestInstanceOverride(final String propertyName, final String defaultValue, final String propertyValue, final String instanceName) { argument 219 put(propertyName, propertyValue); 228 assertEquals(sysProp.get("value"), propertyValue);
|
/glassfish-3.1.2/persistence/jpa-connector/src/main/java/org/glassfish/persistence/jpa/ |
H A D | JPAJava2DBProcessor.java | 304 * @param propertyValue the value of the property. 307 String propertyName, String propertyValue) { 310 descriptor.addProperty(propertyName, propertyValue); 306 addPropertyToDescriptor(PersistenceUnitDescriptor descriptor, String propertyName, String propertyValue) argument
|
/glassfish-3.1.2/deployment/client/src/main/java/org/glassfish/deployment/client/ |
H A D | DFDeploymentStatus.java | 311 public void addProperty(String propertyName, String propertyValue) { argument 312 additionalStatus.put(propertyName, propertyValue); 319 props.put(propertyName, propertyValue);
|
/glassfish-3.1.2/persistence/cmp/ejb-mapping/src/main/java/com/sun/jdo/api/persistence/mapping/ejb/ |
H A D | MappingGenerator.java | 417 * Returns <code>true</code> if the specified propertyValue represents 422 * @param propertyValue the value to be tested for defined 423 * @return <code>true</code> if the specified propertyValue represents 426 protected boolean isPropertyDefined(String propertyValue) { argument 427 return !StringHelper.isEmpty(propertyValue);
|
/glassfish-3.1.2/common/amx-core/src/main/java/org/glassfish/admin/amx/util/jmx/ |
H A D | JMXUtil.java | 455 @param propertyValue 461 final String propertyValue) 471 if (propertyValue.equals(value)) 458 findByProperty( final Set<ObjectName> objectNames, final String propertyKey, final String propertyValue) argument
|
Completed in 25 milliseconds