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

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

public class AttributesType
extends java.lang.Object
implements java.io.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  java.lang.String comment
           
protected  java.util.List<ModuleType> configuration
           
protected  java.util.List<ModuleType> module
           
 
Constructor Summary
AttributesType()
           
 
Method Summary
 java.lang.String getComment()
          Gets the value of the comment property.
 java.util.List<ModuleType> getConfiguration()
          Gets the value of the configuration property.
 java.util.List<ModuleType> getModule()
          Gets the value of the module property.
 void setComment(java.lang.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 java.lang.String comment

module

protected java.util.List<ModuleType> module

configuration

protected java.util.List<ModuleType> configuration
Constructor Detail

AttributesType

public AttributesType()
Method Detail

getComment

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

Returns:
possible object is String

setComment

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

Parameters:
value - allowed object is String

getModule

public java.util.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 java.util.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-2012 The Apache Geronimo development community. All Rights Reserved.