Searched refs:attribute (Results 1 - 25 of 45) sorted by relevance

12

/glassfish-3.1.2/web/web-naming/src/main/java/org/apache/naming/resources/
H A DResourceAttributes.java86 // 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...]
H A DDirContextURLConnection.java90 * Note: All the object attribute names are the WebDAV names, not the HTTP
299 Attribute attribute = attributes.get(attributeID);
300 if (attribute == null) continue;
302 new ArrayList<String>(attribute.size());
303 NamingEnumeration<?> attributeValues = attribute.getAll();
307 attributeValueList.trimToSize(); // should be a no-op if attribute.size() didn't lie
340 Attribute attribute = attributes.get(attributeID);
341 if (attribute == null) return null;
342 return attribute.get(attribute
[all...]
/glassfish-3.1.2/common/internal-api/src/main/java/org/glassfish/internal/embedded/
H A DDomBuilder.java59 DomBuilder attribute(String name, Object value) { method in class:DomBuilder
/glassfish-3.1.2/common/mejb/src/main/java/org/glassfish/admin/mejb/
H A DIIOPMBeanServer.java91 * 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 DMEJBBean.java159 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 DIIOPMBeanServerImpl.java112 * 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/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/runtime/common/
H A DPrincipalNameNode.java77 * 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/admin/javax.management.j2ee/src/main/java/javax/management/j2ee/
H A DManagement.java123 * 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/admin/config-api/src/main/java/org/glassfish/config/support/
H A DBaseLegacyConfigurationUpgrade.java65 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
H A DGlassFishDocument.java88 domainRoot.attribute("version", Version.getBuildVersion());
H A DTargetBasedResolver.java122 if (name.equals(child.attribute("ref"))) {
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/resources/custom/
H A DSystemPropertiesCliResource.java135 String target = getEntity().attribute("name");
195 String name = sysprop.attribute("name");
200 currValue.put(getDefaults ? "defaultValue" : "value", sysprop.attribute("value"));
202 if (sysprop.attribute("description") != null) {
203 currValue.put("description", sysprop.attribute("description"));
209 currValue.put("defaultValue", sysprop.attribute("value"));
223 getSystemProperties(properties, getConfig(dom.parent().parent(), dom.attribute("config-ref")), true);
226 getSystemProperties(properties, getConfig(dom.parent().parent(), dom.attribute("config-ref")), true);
233 if (config.attribute("name").equals(clusterName)) {
243 if (config.attribute("nam
[all...]
/glassfish-3.1.2/admingui/common/src/main/java/org/glassfish/admingui/common/util/
H A DRestResponse.java248 Node attribute = attributes.item(attIdx);
249 result.put(attribute.getNodeName(), attribute.getNodeValue());
293 Node attribute = attributes.item(attIdx);
294 message.put(attribute.getNodeName(), attribute.getNodeValue());
349 Node attribute = attributes.item(attIdx);
350 property.put(attribute.getNodeName(), attribute.getNodeValue());
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/core/
H A DApplicationFilterFactory.java159 Object attribute = request.getAttribute(
161 if (attribute != null){
162 requestPath = attribute.toString();
/glassfish-3.1.2/admin/config-api/src/test/java/com/sun/enterprise/configapi/tests/
H A DDefaultValueTest.java51 * Test attribute and raw attribute access *
77 assertEquals(raw.attribute("address"), address);
H A DTraversalTest.java85 logger.fine(id + a + "=" + proxy.attribute(a));
/glassfish-3.1.2/admin/runtime/jsr77/src/main/java/org/glassfish/admin/runtime/jsr77/
H A DWebModuleMB.java76 "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/admin/monitor/src/main/java/com/sun/enterprise/admin/monitor/stats/lb/
H A DLoadBalancerStats.java88 // 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/admingui/common/src/main/resources/shared/
H A DeditPageButtons_2.inc118 result => $attribute{objStr});
125 result => $attribute{resultEndpoint});
129 gf.createEntity(endpoint="$attribute{resultEndpoint}"
132 result => $attribute{resultEndpoint2});
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/
H A DResourceUtil.java339 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/admingui/jms-plugin/src/main/java/org/glassfish/admingui/plugin/jms/
H A DJmsHandlers.java162 for (Attribute attribute : attributes.asList()) {
163 valueMap.put(attribute.getName(), (attribute.getValue() != null) ? attribute.getValue().toString() : null);
195 for (Attribute attribute : attributes.asList()) {
198 GuiUtil.getMessage(bundle, "jmsPhysDestinations." + attribute.getName()),
199 attribute.getValue(),
200 GuiUtil.getMessage(bundle, "jmsPhysDestinations." + attribute.getName() + "Help")));
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/provider/
H A DFormWriter.java110 " <td><input type='text' name='"+name+"' value='"+data.attribute(name)+"' size='30' /></td>\n" +
/glassfish-3.1.2/jbi/serviceengine/sun-javaee-engine/src/main/java/com/sun/enterprise/jbi/serviceengine/util/soap/
H A DMessageNormalizerImpl.java382 Attr attribute = null;
384 attribute = document.createAttribute(attrName.getQualifiedName());
386 attribute = document.createAttributeNS(attrName.getURI(),attrName.getQualifiedName());
388 attribute.setValue(attrValue);
390 ((Element) result).setAttributeNodeNS(attribute);
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/meta/
H A DJDOMetaDataProperties.java136 * 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/admin/rest/src/main/java/org/glassfish/admin/rest/resources/
H A DPropertiesBagResource.java122 entry.put("name", child.attribute("name"));
123 entry.put("value", child.attribute("value"));
124 String description = child.attribute("description");

Completed in 3222 milliseconds

12