org.apache.geronimo.jee.naming
public class: Property [javadoc |
source]
java.lang.Object
org.apache.geronimo.jee.naming.Property
All Implemented Interfaces:
Serializable
Java class for propertyType complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="propertyType">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="key" type="{http://www.w3.org/2001/XMLSchema}string"/>
<element name="value" type="{http://www.w3.org/2001/XMLSchema}string"/>
</sequence>
</restriction>
</complexContent>
</complexType>
- version:
$ - Rev: 642503 $ $Date: 2008-03-29 12:35:01 +0800 (Sat, 29 Mar 2008) $
| Field Summary |
|---|
| protected String | key | |
| protected String | value | |
| Methods from java.lang.Object: |
|---|
|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Method from org.apache.geronimo.jee.naming.Property Detail: |
public String getKey() {
return key;
}
Gets the value of the key property. |
public String getValue() {
return value;
}
Gets the value of the value property. |
public void setKey(String value) {
this.key = value;
}
Sets the value of the key property. |
public void setValue(String value) {
this.value = value;
}
Sets the value of the value property. |