org.apache.geronimo.system.plugin.model
Class PropertyType

java.lang.Object
  extended by org.apache.geronimo.system.plugin.model.PropertyType
All Implemented Interfaces:
Serializable

public class PropertyType
extends Object
implements Serializable

holds key-value pair. key is in 'key' attribute, value is in content

Java class for propertyType complex type.

The following schema fragment specifies the expected content contained within this class.

 <complexType name="propertyType">
   <simpleContent>
     <extension base="<http://www.w3.org/2001/XMLSchema>string">
       <attribute name="key" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="server" type="{http://www.w3.org/2001/XMLSchema}string" default="default" />
     </extension>
   </simpleContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  String key
           
protected  String server
           
protected  String value
           
 
Constructor Summary
PropertyType()
           
 
Method Summary
 String getKey()
          Gets the value of the key property.
 String getServer()
          Gets the value of the server property.
 String getValue()
          Gets the value of the value property.
 void setKey(String value)
          Sets the value of the key property.
 void setServer(String value)
          Sets the value of the server property.
 void setValue(String value)
          Sets the value of the value property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

value

protected String value

key

protected String key

server

protected String server
Constructor Detail

PropertyType

public PropertyType()
Method Detail

getValue

public String getValue()
Gets the value of the value property.

Returns:
possible object is String

setValue

public void setValue(String value)
Sets the value of the value property.

Parameters:
value - allowed object is String

getKey

public String getKey()
Gets the value of the key property.

Returns:
possible object is String

setKey

public void setKey(String value)
Sets the value of the key property.

Parameters:
value - allowed object is String

getServer

public String getServer()
Gets the value of the server property.

Returns:
possible object is String

setServer

public void setServer(String value)
Sets the value of the server property.

Parameters:
value - allowed object is String


Copyright © 2003-2008 The Apache Geronimo development community. All Rights Reserved.