Groovy Documentation

com.ace.mws.plugins
[Groovy] Class PluginType

java.lang.Object
  com.ace.mws.plugins.PluginType

class PluginType

Represents a MWS plugin type.

Authors:
bsaville


Field Summary
private String author

The author of the plugin type.

private String description

The description of the plugin type.

private String id

The unique identifier of the plugin type.

private Set instances

(PluginInstance collection) The list of plugin instances created from this plugin type.

private static long serialVersionUID

 
Constructor Summary
PluginType()

 
Method Summary
String getAuthor()

The author of the plugin type.

String getDescription()

The description of the plugin type.

String getId()

The unique identifier of the plugin type.

Set getInstances()

(PluginInstance collection) The list of plugin instances created from this plugin type.

void setAuthor(String author)

The author of the plugin type.

void setDescription(String description)

The description of the plugin type.

void setId(String id)

The unique identifier of the plugin type.

void setInstances(Set instances)

(PluginInstance collection) The list of plugin instances created from this plugin type.

String toString()

 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Field Detail

author

private String author
The author of the plugin type. Optional.


description

private String description
The description of the plugin type. Optional.


id

private String id
The unique identifier of the plugin type. This is based on the class name of the plugin. Ex:

Plugin Class Name -> ID
NativePlugin -> Native
MSMPlugin -> MSM
ExamplePlugin -> Example


instances

private Set instances
(PluginInstance collection) The list of plugin instances created from this plugin type.
See Also:
PluginInstance


serialVersionUID

private static final long serialVersionUID


 
Constructor Detail

PluginType

PluginType()


 
Method Detail

getAuthor

String getAuthor()
The author of the plugin type. Optional.


getDescription

String getDescription()
The description of the plugin type. Optional.


getId

String getId()
The unique identifier of the plugin type. This is based on the class name of the plugin. Ex:

Plugin Class Name -> ID
NativePlugin -> Native
MSMPlugin -> MSM
ExamplePlugin -> Example


getInstances

Set getInstances()
(PluginInstance collection) The list of plugin instances created from this plugin type.
See Also:
PluginInstance


setAuthor

void setAuthor(String author)
The author of the plugin type. Optional.


setDescription

void setDescription(String description)
The description of the plugin type. Optional.


setId

void setId(String id)
The unique identifier of the plugin type. This is based on the class name of the plugin. Ex:

Plugin Class Name -> ID
NativePlugin -> Native
MSMPlugin -> MSM
ExamplePlugin -> Example


setInstances

void setInstances(Set instances)
(PluginInstance collection) The list of plugin instances created from this plugin type.
See Also:
PluginInstance


toString

String toString()


 

Groovy Documentation