/glassfish-3.1.2/admin/config-api/src/main/java/org/glassfish/config/support/ |
H A D | BaseLegacyConfigurationUpgrade.java | 65 final String property, final String attribute) 71 setProperty(target, attribute, getValue(propertyList, property)); 72 final String message = MessageFormat.format("Moved {0}.property.{1} to {0}.{2}", 74 property, 84 protected void removeProperty(final ConfigBeanProxy target, final String property) argument 94 if (property.equals(prop.getName())) { 106 private String getValue(List<Property> list, String property) { argument 110 if (property.equals(prop.getName())) { 64 updatePropertyToAttribute(final AdminCommandContext context, final ConfigBeanProxy target, final String property, final String attribute) argument
|
H A D | HttpServicePropertiesUpgrade.java | 75 final Property property = iterator.next(); 76 String name = property.getName(); 82 upgrade(context, property, service); 93 private void upgrade(final AdminCommandContext context, final Property property, final HttpService service) argument 95 if ("accessLoggingEnabled".equals(property.getName())) { 97 } else if ("accessLogBufferSize".equals(property.getName())) { 101 param.setBufferSizeBytes(property.getValue()); 107 "Moved http-service.property.accessLogBufferSize to http-service.access-log.buffer-size-bytes"); 108 } else if ("accessLogWriteInterval".equals(property.getName())) { 112 param.setWriteIntervalSeconds(property [all...] |
/glassfish-3.1.2/registration/registration-impl/src/main/java/com/sun/enterprise/registration/impl/environment/ |
H A D | WindowsSystemEnvironment.java | 167 private String getWmicResult(String alias, String verb, String property) { argument 171 ProcessBuilder pb = new ProcessBuilder("cmd", "/C", "WMIC", alias, verb, property); 210 private String getFullWmicResult(String alias, String verb, String property) { argument 214 ProcessBuilder pb = new ProcessBuilder("cmd", "/C", "WMIC", alias, verb, property); 233 if (line.toLowerCase().indexOf(property.toLowerCase()) != -1) {
|
/glassfish-3.1.2/deployment/admin/src/main/java/org/glassfish/deployment/admin/ |
H A D | CreateLifecycleModuleCommand.java | 106 public Properties property = null; field in class:CreateLifecycleModuleCommand 140 if (property!=null) { 141 appProps.putAll(property);
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/web/ |
H A D | WLJspDescriptorNode.java | 104 private void setJspInitParameter(String property, String value) { argument 109 // The description in the envior property is used as special 112 new EnvironmentProperty(property, value, JSP_DESC));
|
H A D | WebPropertyNode.java | 52 * node for web property tag 92 WebProperty property) { 94 (Element) super.writeDescriptor(parent, nodeName, property); 97 appendTextChild(propertyElement, RuntimeTagNames.DESCRIPTION, property.getDescription()); 99 setAttribute(propertyElement, RuntimeTagNames.NAME, (String) property.getAttributeValue(WebProperty.NAME)); 100 setAttribute(propertyElement, RuntimeTagNames.VALUE, (String) property.getAttributeValue(WebProperty.VALUE)); 91 writeDescriptor(Node parent, String nodeName, WebProperty property) argument
|
/glassfish-3.1.2/connectors/connectors-internal-api/src/main/java/com/sun/appserv/connectors/internal/api/ |
H A D | JavaEEResourceBase.java | 100 public void addProperty(ResourceProperty property) { argument 101 properties_.put(property.getName(), property); 104 public boolean removeProperty(ResourceProperty property) { argument 105 Object removedObj = properties_.remove(property.getName());
|
H A D | JavaEEResource.java | 88 * Actual property names are resource type specific. 90 * @return Shallow copy of resource property set. If 97 * Add a property. Underlying set is keyed by 98 * property name. The new property overrides any 99 * existing property with same name. 101 void addProperty(ResourceProperty property); argument 104 * Remove a property. Underlying set is keyed by 105 * property name. 107 * @return true if property wa 110 removeProperty(ResourceProperty property) argument [all...] |
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/util/ |
H A D | ConnectionDefinitionUtils.java | 128 private static boolean removePropertyFromMap(String property, Map map){ argument 133 if(property.equalsIgnoreCase(key)){ 172 * @return Map<String, Object> String represents property name 193 String property= (String) iter.next(); 198 "get" + property, 202 // no getters for properties [example the password property 211 //If the property does not have a corresponding getter method, 213 hm.put(property, defaultVal);
|
H A D | DriverLoader.java | 591 private File getLocation(String property) { argument 592 return new File(System.getProperty(property) + File.separator + "lib");
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/valves/ |
H A D | RequestFilterValve.java | 85 * appropriate request property (selected based on which subclass you choose 92 * which the appropriate request property will be compared. Evaluation 95 * <li>The subclass extracts the request property to be filtered, and 97 * <li>If there are any deny expressions configured, the property will 100 * <li>If there are any allow expressions configured, the property will 233 * Extract the desired request property, and pass it (along with the 295 * against the specified request property. 297 * @param property The request property on which to filter 304 protected int process(String property, Reques argument [all...] |
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/enterprise/web/reconfig/ |
H A D | WebConfigListener.java | 81 public List<Property> property; field in class:WebConfigListener
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/deployment/ |
H A D | DeployCommandParameters.java | 132 @Param(optional=true, name="property", separator=':') 133 public Properties property; field in class:DeployCommandParameters
|
/glassfish-3.1.2/connectors/connectors-runtime/src/main/java/com/sun/enterprise/connectors/deployment/annotation/handlers/ |
H A D | ConfigPropertyHandler.java | 201 * correct accessor and mutator method names for a give property. 356 //this particular message-listener-type. If so, we should not add config-property as they 436 // make sure that the property is not already specified in DD 445 //indicate that the config-property is processed 448 //indicate that the config-property is not processed and need to be processed during post-processing 453 private static String validateMethod(Method m, ConfigProperty property){ argument 469 Class type = property.type(); 481 //check compatibility between annotation type and property-type 493 return "annotation type [" + type + "] and property-type" + 501 private static Class getType( ConfigProperty property, Clas argument 510 validateField(Field f, ConfigProperty property) argument 574 processConfigProperty(Set configProperties, String propertyName, ConfigProperty property, String defaultValue, Class declaredEntityType) argument [all...] |
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc-core/src/main/java/com/sun/gjc/common/ |
H A D | DataSourceSpec.java | 111 * Set the property. 113 * @param property Property Name to be set. 114 * @param value Value of property to be set. 116 public void setDetail(int property, String value) { argument 117 details.put(property, value); 121 * Get the value of property 123 * @param property whose value is required 124 * @return value of the property. 126 public String getDetail(int property) { argument 127 if (details.containsKey(property)) { [all...] |
/glassfish-3.1.2/core/logging/src/main/java/com/sun/enterprise/server/logging/ |
H A D | LogManagerService.java | 236 // if the system property is already set, we don't need to do anything 572 public void generateAttributeChangeEvent(String property, String propertyDetail, Map props) { argument 573 PropertyChangeEvent pce = new PropertyChangeEvent(this, property, propertyDetail, props.get(property)); 574 UnprocessedChangeEvents ucel = new UnprocessedChangeEvents(new UnprocessedChangeEvent(pce, "server log file attribute " + property + " changed."));
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/ |
H A D | ServiceRefPortInfo.java | 293 // Set of NameValuePairDescriptor objects for each stub property. 328 * Add stub property, using property name as a key. This will 329 * replace the property value of any existing stub property with 332 public void addStubProperty(NameValuePairDescriptor property) { argument 334 getStubPropertyByName(property.getName()); 336 prop.setValue(property.getValue()); 338 stubProperties.add(property); 343 * Remove stub property, usin 347 removeStubProperty(NameValuePairDescriptor property) argument 393 addCallProperty(NameValuePairDescriptor property) argument 409 removeCallProperty(NameValuePairDescriptor property) argument [all...] |
H A D | ServiceReferenceDescriptor.java | 617 * Add call property, using property name as a key. This will 618 * replace the property value of any existing stub property with 621 public void addCallProperty(NameValuePairDescriptor property) { argument 623 getCallPropertyByName(property.getName()); 625 prop.setValue(property.getValue()); 627 callProperties.add(property); 633 * Remove call property, using property nam 637 removeCallProperty(NameValuePairDescriptor property) argument [all...] |
/glassfish-3.1.2/admin/config-api/src/main/java/com/sun/enterprise/config/serverbeans/ |
H A D | Config.java | 102 "property" 125 * Gets the value of the dynamicReconfigurationEnabled property. 140 * Sets the value of the dynamicReconfigurationEnabled property. 148 * Gets the value of the networkConfig property. 156 * Sets the value of the networkConfig property. 163 * Gets the value of the httpService property. 172 * Sets the value of the httpService property. 180 * Gets the value of the iiopService property. 190 * Sets the value of the iiopService property. 198 * Gets the value of the adminService property 535 setLoggingProperty(String property, String value) argument 556 setLoggingProperty(Config c, String property, String value) argument [all...] |
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/ |
H A D | WsUtil.java | 127 // proprietary property for enabling logging of stub requests/responses 1200 // Better to use Port object's WSDL_PORT property for port 1494 String property){ 1496 Object prop = messageContext.getProperty(property); 1492 isMessageContextPropertySet(com.sun.xml.rpc.spi.runtime.SOAPMessageContext messageContext, String property) argument
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/ |
H A D | Digester.java | 407 * <code>useContextClassLoader</code> property is set to true</li> 546 * @exception SAXNotRecognizedException if the property name is 548 * @exception SAXNotSupportedException if the property name is 575 * @exception SAXNotRecognizedException if the property name is 577 * @exception SAXNotSupportedException if the property name is 743 * Return the current value of the specified property for the underlying 749 * @param property Property name to be retrieved 751 * @exception SAXNotRecognizedException if the property name is 753 * @exception SAXNotSupportedException if the property name is 756 public Object getProperty(String property) argument 779 setProperty(String property, Object value) argument [all...] |
/glassfish-3.1.2/jdbc/jdbc-ra/jdbc40/ |
H A D | jdbc40.jar | META-INF/ META-INF/MANIFEST.MF javax/ javax/sql/ javax/sql/StatementEvent.class StatementEvent. ... |