|
Groovy Documentation | |||||||
FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object com.ace.mws.plugins.PluginType
class PluginType
Represents a MWS plugin type. All fields in this class are generated from plugin project and type metadata and cannot be modified directly. Consequentially, all fields are only valid for list/show/GET operations.
Field Summary | |
---|---|
private String |
author
The main author (company or person) of the plugin type. |
private String |
commonsVersion
A string representing the restriction on which version of the plugin framework (plugins-commons dependency) is required for the plugin type. |
private String |
description
The full description of the plugin type. |
private String |
documentationLink
A full URL to the complete documentation for the plugin type. |
private String |
email
The email of the author. |
private String |
id
The unique identifier of the plugin type. |
private Map |
initialPlugins
(Map of String => PluginInstance) Represents the plugins that are initially configured when the plugin type is loaded. |
private String |
issueManagementLink
A full URL to the issue management system or project for the plugin type. |
private String |
license
The license of this plugin type, typically APACHE. |
private String |
mwsVersion
A string representing the restriction on which version of MWS is required for the plugin type. |
private boolean |
pollMethod
Indicates whether the plugin type has a defined 'poll' method (event handler) or not. |
private String |
scmLink
A full URL to the Source Control Management (SCM) system or project for the plugin type. |
private String |
title
A short name describing the plugin type. |
private String |
website
The website of the author. |
Constructor Summary | |
PluginType()
|
Method Summary | |
---|---|
String
|
getAuthor()
The main author (company or person) of the plugin type. |
String
|
getCommonsVersion()
A string representing the restriction on which version of the plugin framework (plugins-commons dependency) is required for the plugin type. |
String
|
getDescription()
The full description of the plugin type. |
String
|
getDocumentationLink()
A full URL to the complete documentation for the plugin type. |
String
|
getEmail()
The email of the author. |
String
|
getId()
The unique identifier of the plugin type. |
Map
|
getInitialPlugins()
(Map of String => PluginInstance) Represents the plugins that are initially configured when the plugin type is loaded. |
String
|
getIssueManagementLink()
A full URL to the issue management system or project for the plugin type. |
String
|
getLicense()
The license of this plugin type, typically APACHE. |
String
|
getMwsVersion()
A string representing the restriction on which version of MWS is required for the plugin type. |
boolean
|
getPollMethod()
Indicates whether the plugin type has a defined 'poll' method (event handler) or not. |
String
|
getScmLink()
A full URL to the Source Control Management (SCM) system or project for the plugin type. |
String
|
getTitle()
A short name describing the plugin type. |
String
|
getWebsite()
The website of the author. |
void
|
setAuthor(String author)
The main author (company or person) of the plugin type. |
void
|
setCommonsVersion(String commonsVersion)
A string representing the restriction on which version of the plugin framework (plugins-commons dependency) is required for the plugin type. |
void
|
setDescription(String description)
The full description of the plugin type. |
void
|
setDocumentationLink(String documentationLink)
A full URL to the complete documentation for the plugin type. |
void
|
setEmail(String email)
The email of the author. |
void
|
setId(String id)
The unique identifier of the plugin type. |
void
|
setInitialPlugins(Map initialPlugins)
(Map of String => PluginInstance) Represents the plugins that are initially configured when the plugin type is loaded. |
void
|
setIssueManagementLink(String issueManagementLink)
A full URL to the issue management system or project for the plugin type. |
void
|
setLicense(String license)
The license of this plugin type, typically APACHE. |
void
|
setMwsVersion(String mwsVersion)
A string representing the restriction on which version of MWS is required for the plugin type. |
void
|
setPollMethod(boolean pollMethod)
Indicates whether the plugin type has a defined 'poll' method (event handler) or not. |
void
|
setScmLink(String scmLink)
A full URL to the Source Control Management (SCM) system or project for the plugin type. |
void
|
setTitle(String title)
A short name describing the plugin type. |
void
|
setWebsite(String website)
The website of the author. |
String
|
toString()
|
Methods inherited from class Object | |
---|---|
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll |
Field Detail |
---|
private String author
private String commonsVersion
private String description
private String documentationLink
private String email
private String id
private Map initialPlugins
private String issueManagementLink
private String license
private String mwsVersion
private boolean pollMethod
private String scmLink
private String title
private String website
Constructor Detail |
---|
PluginType()
Method Detail |
---|
String getAuthor()
String getCommonsVersion()
String getDescription()
String getDocumentationLink()
String getEmail()
String getId()
Map getInitialPlugins()
String getIssueManagementLink()
String getLicense()
String getMwsVersion()
boolean getPollMethod()
String getScmLink()
String getTitle()
String getWebsite()
void setAuthor(String author)
void setCommonsVersion(String commonsVersion)
void setDescription(String description)
void setDocumentationLink(String documentationLink)
void setEmail(String email)
void setId(String id)
void setInitialPlugins(Map initialPlugins)
void setIssueManagementLink(String issueManagementLink)
void setLicense(String license)
void setMwsVersion(String mwsVersion)
void setPollMethod(boolean pollMethod)
void setScmLink(String scmLink)
void setTitle(String title)
void setWebsite(String website)
String toString()
Groovy Documentation