/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/ |
H A D | DomBuilder.java | 59 DomBuilder attribute(String name, Object value) { method in class:DomBuilder
|
/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)); 75 Dom.convertName(attribute)); 64 updatePropertyToAttribute(final AdminCommandContext context, final ConfigBeanProxy target, final String property, final String attribute) argument
|
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/common/ |
H A D | PrincipalNameNode.java | 77 * parsed an attribute of an element 80 * @param the attribute name 81 * @param the attribute value 82 * @return true if the attribute was processed 85 XMLElement element, XMLElement attribute, String value) { 89 if (attribute.getQName().equals(RuntimeTagNames.CLASS_NAME)) { 84 setAttributeValue( XMLElement element, XMLElement attribute, String value) argument
|
/glassfish-3.1.2/common/glassfish-api/src/main/java/org/glassfish/api/invocation/ |
H A D | InvocationManagerImpl.java | 279 public void setInvocationAttribute(ComponentInvocationType attribute) { argument 280 this.invocationAttribute = attribute;
|
/glassfish-3.1.2/common/mejb/src/main/java/org/glassfish/admin/mejb/ |
H A D | IIOPMBeanServer.java | 91 * Gets the value of a specific attribute of a named managed object. The managed object 94 * @param name The object name of the managed object from which the attribute is to be retrieved. 95 * @param attribute A String specifying the name of the attribute to be 98 * @return The value of the retrieved attribute. 100 * @exception AttributeNotFoundException The attribute specified is not accessible in the managed object. 105 * the attribute in parameter is null. 109 Object getAttribute(ObjectName name, String attribute) throws argument 134 * Sets the value of a specific attribute of a named managed object. The managed object 137 * @param name The name of the managed object within which the attribute i 152 setAttribute(ObjectName name, Attribute attribute) argument [all...] |
H A D | MEJBBean.java | 159 public Object getAttribute(ObjectName name, String attribute) throws MBeanException, argument 162 //debug( "MEJBBean.getAttribute: " + attribute + " on " + name ); 163 return mbeanServer.getAttribute( bounce(name) , attribute); 172 public void setAttribute(ObjectName name, Attribute attribute) argument 176 mbeanServer.setAttribute( bounce(name), attribute);
|
H A D | IIOPMBeanServerImpl.java | 112 * Gets the value of a specific attribute of a named MBean. The MBean is identified by its object name. 113 * @param name The object name of the MBean from which the attribute is to be retrieved. 114 * @param attribute A String specifying the name of the attribute to be retrieved. 115 * @return The value of the retrieved attribute. 116 * @exception AttributeNotFoundException The attribute specified is not accessible in the MBean. 121 * parameter is null or the attribute in parameter is null. 123 public Object getAttribute(ObjectName name, String attribute) throws MBeanException, argument 126 return server.getAttribute(name, attribute); 145 * Sets the value of a specific attribute o 157 setAttribute(ObjectName name, Attribute attribute) argument [all...] |
/glassfish-3.1.2/admin/javax.management.j2ee/src/main/java/javax/management/j2ee/ |
H A D | Management.java | 123 * Gets the value of a specific attribute of a named managed object. The managed object 126 * @param name The object name of the managed object from which the attribute is to be retrieved. 127 * @param attribute A String specifying the name of the attribute to be 130 * @return The value of the retrieved attribute. 132 * @exception AttributeNotFoundException The attribute specified is not accessible in the managed object. 138 Object getAttribute(ObjectName name, String attribute) throws MBeanException, AttributeNotFoundException, InstanceNotFoundException, ReflectionException, RemoteException; argument 157 * Sets the value of a specific attribute of a named managed object. The managed object 160 * @param name The name of the managed object within which the attribute is to be set. 161 * @param attribute Th 170 setAttribute(ObjectName name, Attribute attribute) argument [all...] |
/glassfish-3.1.2/deployment/common/src/main/java/org/glassfish/deployment/common/ |
H A D | AnnotationScanner.java | 86 public void visitAttribute(Attribute attribute) { argument
|
H A D | NodeInfo.java | 270 public void visitAttribute(Attribute attribute) { argument
|
/glassfish-3.1.2/admin/runtime/jsr77/src/main/java/org/glassfish/admin/runtime/jsr77/ |
H A D | WebModuleMB.java | 76 "Cannot invoke a getter of " + className + " with null attribute name"); 131 "Cannot find " + attribute_name + " attribute in " + className)); 135 * Sets the value of the specified attribute of the Dynamic MBean. 137 public void setAttribute(Attribute attribute) argument 143 // Check attribute is not null to avoid NullPointerException later on 144 if (attribute == null) { 147 "Cannot invoke a setter of " + className + " with null attribute"); 149 String name = attribute.getName(); 150 Object value = attribute.getValue(); 155 "Cannot invoke the setter of " + className + " with null attribute nam [all...] |
/glassfish-3.1.2/web/web-ajp/src/main/java/org/apache/jk/common/ |
H A D | ModJkMX.java | 357 /** Use the same metadata, except that we replace the attribute 447 public void setAttribute(Attribute attribute) argument 453 String val=(String)attribute.getValue(); 454 String name=attribute.getName();
|
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/modeler/ |
H A D | ManagedBean.java | 247 * Add a new attribute to the set of attributes for this MBean. 249 * @param attribute The new attribute descriptor 251 public void addAttribute(AttributeInfo attribute) { argument 257 results[attributes.length] = attribute; 469 // Add operations for attribute getters and setters as needed
|
H A D | BaseModelMBean.java | 89 * <li>Caching of attribute values and operation results is not supported. 93 * <li>All classes referenced as attribute types, operation parameters, or 193 * Notification broadcaster for attribute changes. 232 // key: attribute val: getter method 235 // key: attribute val: setter method 242 * Obtain and return the value of a specific attribute of this MBean. 244 * @param name Name of the requested attribute 246 * @exception AttributeNotFoundException if this attribute is not 274 throw new AttributeNotFoundException(" Cannot find attribute " + name); 277 throw new AttributeNotFoundException("Cannot find attribute " 548 setAttribute(Attribute attribute) argument [all...] |
/glassfish-3.1.2/admin/cli/src/main/java/com/sun/enterprise/admin/cli/schemadoc/ |
H A D | EmptyVisitor.java | 70 public void visitAttribute(Attribute attribute) { argument
|
/glassfish-3.1.2/admin/jmx-remote/client/src/main/java/com/sun/enterprise/admin/jmx/remote/internal/ |
H A D | RemoteMBeanServerConnection.java | 612 public void setAttribute(ObjectName objectName, Attribute attribute) throws argument 621 MBeanServerRequestMessage.SET_ATTRIBUTE, toArray(objectName, attribute));
|
/glassfish-3.1.2/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/stats/lb/ |
H A D | LoadBalancerStats.java | 88 // This attribute is an array, possibly empty 236 public static void writeXML(java.io.Writer out, String msg, boolean attribute) throws java.io.IOException { argument 242 writeXML(out, c, attribute); 246 public static void writeXML(java.io.Writer out, char msg, boolean attribute) throws java.io.IOException { argument 253 else if (attribute && msg == '"') 255 else if (attribute && msg == '\'') 257 else if (attribute && msg == '\n') 259 else if (attribute && msg == '\t')
|
/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/ |
H A D | ResourceAttributes.java | 86 // Default attribute names 227 * Merges with another attribute set. 347 Attribute attribute = attributes.get(CONTENT_LENGTH); 348 if (attribute != null) { 350 Object value = attribute.get(); 361 // No value for the attribute 392 Attribute attribute = attributes.get(CREATION_DATE); 393 if (attribute != null) { 395 Object value = attribute.get(); 420 // No value for the attribute 905 put(Attribute attribute) argument [all...] |
/glassfish-3.1.2/core/kernel/src/main/java/com/sun/enterprise/v3/admin/ |
H A D | DynamicInterceptor.java | 412 public void setAttribute(final ObjectName objectName, final Attribute attribute) throws argument 420 getInstanceConnection(result.getInstances().get(0)).setAttribute(objectName, attribute); 425 getDelegateMBeanServer().setAttribute( objectName, attribute ); 427 getInstanceConnection(svr).setAttribute(objectName, attribute);
|
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/ |
H A D | ResourceUtil.java | 339 Attribute attribute = method.getAnnotation(Attribute.class); 340 if (attribute != null) { 341 ParameterMetaData parameterMetaData = getParameterMetaData(attribute); 387 Attribute attribute = method.getAnnotation(Attribute.class); 388 if (attribute != null) { 389 ParameterMetaData localParam = ResourceUtil.getParameterMetaData(attribute); 402 Attribute attribute = method.getAnnotation(Attribute.class); 403 if (attribute != null) { 404 ParameterMetaData localParam = ResourceUtil.getParameterMetaData(attribute); 626 //Construct parameter meta-data from the attribute annotatio 627 getParameterMetaData(Attribute attribute) argument [all...] |
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/meta/ |
H A D | JDOMetaDataProperties.java | 136 * A delimiter character between attribute name and attribute value 141 //attribute names for classes and fields 149 //values of the access attribute of classes and fields. 155 //values of the jdo attribute of classes and fields. 160 //values of the annotation type attribute of fields. 347 * @param atributes The attribute-string as specified in the properties. 401 * Checks if the given attribute-property of a class is valid. 403 * @param prop The attribute-property. 501 * Parses the attribute 908 parseProperty(String attribute) argument [all...] |
/glassfish-3.1.2/common/amx-config-impl/src/main/java/org/glassfish/admin/amx/impl/config/ |
H A D | ConfigBeanJMXSupport.java | 183 ", using \"" + configuredBugKey() + "\" as the key attribute"); 336 "attribute change"); 651 final Attribute a = info.attribute(); 868 final Attribute a = info.attribute(); 1127 public Attribute attribute() method in class:ConfigBeanJMXSupport.AttributeMethodInfo 1161 final long[] minMax = minMaxFromDataType(attribute().dataType()); 1172 final long[] minMax = minMaxFromDataType(attribute().dataType()); 1196 final Object defaultValue = attribute().defaultValue(); 1203 Class<?> dataType = attribute().dataType(); 1211 final Object defaultValue = attribute() [all...] |