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

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

public class AttributesType
extends Object
implements Serializable

Java class for attributesType complex type.

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

 <complexType name="attributesType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="comment" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <choice>
           <element name="module" type="{http://geronimo.apache.org/xml/ns/attributes-1.2}moduleType" maxOccurs="unbounded" minOccurs="0"/>
           <element name="configuration" type="{http://geronimo.apache.org/xml/ns/attributes-1.2}moduleType" maxOccurs="unbounded" minOccurs="0"/>
         </choice>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  String comment
           
protected  List<ModuleType> configuration
           
protected  List<ModuleType> module
           
 
Constructor Summary
AttributesType()
           
 
Method Summary
 String getComment()
          Gets the value of the comment property.
 List<ModuleType> getConfiguration()
          Gets the value of the configuration property.
 List<ModuleType> getModule()
          Gets the value of the module property.
 void setComment(String value)
          Sets the value of the comment property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

comment

protected String comment

module

protected List<ModuleType> module

configuration

protected List<ModuleType> configuration
Constructor Detail

AttributesType

public AttributesType()
Method Detail

getComment

public String getComment()
Gets the value of the comment property.

Returns:
possible object is String

setComment

public void setComment(String value)
Sets the value of the comment property.

Parameters:
value - allowed object is String

getModule

public List<ModuleType> getModule()
Gets the value of the module property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the module property.

For example, to add a new item, do as follows:

    getModule().add(newItem);
 

Objects of the following type(s) are allowed in the list ModuleType


getConfiguration

public List<ModuleType> getConfiguration()
Gets the value of the configuration property.

This accessor method returns a reference to the live list, not a snapshot. Therefore any modification you make to the returned list will be present inside the JAXB object. This is why there is not a set method for the configuration property.

For example, to add a new item, do as follows:

    getConfiguration().add(newItem);
 

Objects of the following type(s) are allowed in the list ModuleType



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