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

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

public class PluginType
extends java.lang.Object
implements java.io.Serializable

Java class for pluginType complex type.

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

 <complexType name="pluginType">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="name" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="category" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="pluginGroup" type="{http://www.w3.org/2001/XMLSchema}boolean" minOccurs="0"/>
         <element name="description" type="{http://www.w3.org/2001/XMLSchema}string"/>
         <element name="url" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="author" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
         <element name="license" type="{http://geronimo.apache.org/xml/ns/plugins-1.3}licenseType" maxOccurs="unbounded" minOccurs="0"/>
         <element name="plugin-artifact" type="{http://geronimo.apache.org/xml/ns/plugins-1.3}pluginArtifactType" maxOccurs="unbounded"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 

See Also:
Serialized Form

Field Summary
protected  java.lang.String author
           
protected  java.lang.String category
           
protected  java.lang.String description
           
protected  java.util.List<LicenseType> license
           
protected  java.lang.String name
           
protected  java.util.List<PluginArtifactType> pluginArtifact
           
protected  java.lang.Boolean pluginGroup
           
protected  java.lang.String url
           
 
Constructor Summary
PluginType()
           
 
Method Summary
 java.lang.String getAuthor()
          Gets the value of the author property.
 java.lang.String getCategory()
          Gets the value of the category property.
 java.lang.String getDescription()
          Gets the value of the description property.
 java.util.List<LicenseType> getLicense()
          Gets the value of the license property.
 java.lang.String getName()
          Gets the value of the name property.
 java.util.List<PluginArtifactType> getPluginArtifact()
          Gets the value of the pluginArtifact property.
 java.lang.String getUrl()
          Gets the value of the url property.
 java.lang.Boolean isPluginGroup()
          Gets the value of the pluginGroup property.
 void setAuthor(java.lang.String value)
          Sets the value of the author property.
 void setCategory(java.lang.String value)
          Sets the value of the category property.
 void setDescription(java.lang.String value)
          Sets the value of the description property.
 void setName(java.lang.String value)
          Sets the value of the name property.
 void setPluginGroup(java.lang.Boolean value)
          Sets the value of the pluginGroup property.
 void setUrl(java.lang.String value)
          Sets the value of the url property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

name

protected java.lang.String name

category

protected java.lang.String category

pluginGroup

protected java.lang.Boolean pluginGroup

description

protected java.lang.String description

url

protected java.lang.String url

author

protected java.lang.String author

license

protected java.util.List<LicenseType> license

pluginArtifact

protected java.util.List<PluginArtifactType> pluginArtifact
Constructor Detail

PluginType

public PluginType()
Method Detail

getName

public java.lang.String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(java.lang.String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getCategory

public java.lang.String getCategory()
Gets the value of the category property.

Returns:
possible object is String

setCategory

public void setCategory(java.lang.String value)
Sets the value of the category property.

Parameters:
value - allowed object is String

isPluginGroup

public java.lang.Boolean isPluginGroup()
Gets the value of the pluginGroup property.

Returns:
possible object is Boolean

setPluginGroup

public void setPluginGroup(java.lang.Boolean value)
Sets the value of the pluginGroup property.

Parameters:
value - allowed object is Boolean

getDescription

public java.lang.String getDescription()
Gets the value of the description property.

Returns:
possible object is String

setDescription

public void setDescription(java.lang.String value)
Sets the value of the description property.

Parameters:
value - allowed object is String

getUrl

public java.lang.String getUrl()
Gets the value of the url property.

Returns:
possible object is String

setUrl

public void setUrl(java.lang.String value)
Sets the value of the url property.

Parameters:
value - allowed object is String

getAuthor

public java.lang.String getAuthor()
Gets the value of the author property.

Returns:
possible object is String

setAuthor

public void setAuthor(java.lang.String value)
Sets the value of the author property.

Parameters:
value - allowed object is String

getLicense

public java.util.List<LicenseType> getLicense()
Gets the value of the license 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 license property.

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

    getLicense().add(newItem);
 

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


getPluginArtifact

public java.util.List<PluginArtifactType> getPluginArtifact()
Gets the value of the pluginArtifact 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 pluginArtifact property.

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

    getPluginArtifact().add(newItem);
 

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



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