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

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

public class PluginListType
extends Object
implements Serializable

Java class for plugin-listType complex type.

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

 <complexType name="plugin-listType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="plugin" type="{http://geronimo.apache.org/xml/ns/plugins-1.3}pluginType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="default-repository" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  List<String> defaultRepository
           
protected  List<PluginType> plugin
           
 
Constructor Summary
PluginListType()
           
 
Method Summary
 List<String> getDefaultRepository()
          Gets the value of the defaultRepository property.
 List<PluginType> getPlugin()
          Gets the value of the plugin property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

plugin

protected List<PluginType> plugin

defaultRepository

protected List<String> defaultRepository
Constructor Detail

PluginListType

public PluginListType()
Method Detail

getPlugin

public List<PluginType> getPlugin()
Gets the value of the plugin 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 plugin property.

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

    getPlugin().add(newItem);
 

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


getDefaultRepository

public List<String> getDefaultRepository()
Gets the value of the defaultRepository 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 defaultRepository property.

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

    getDefaultRepository().add(newItem);
 

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



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