Interface PluginDescriptor
-
- All Superinterfaces:
java.io.Serializable
public interface PluginDescriptor extends java.io.SerializableDescriptor represent the plugin descriptor XML file.- See Also:
- Go Plugin Documentation
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfacePluginDescriptor.AboutPlugin author information.static interfacePluginDescriptor.VendorPlugin vendor information.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PluginDescriptor.Aboutabout()Plugin author information.java.lang.Stringid()Plugin Id.java.lang.Stringversion()Provides version of the plugin which will be used by Go to identify the version of the plugin.
-
-
-
Method Detail
-
id
java.lang.String id()
Plugin Id.- Returns:
- a string containing the plugin id.
-
version
java.lang.String version()
Provides version of the plugin which will be used by Go to identify the version of the plugin. It will be used in plugin upgrade flow and only integer values are allowed.- Returns:
- a string containing the plugin descriptor version.
-
about
PluginDescriptor.About about()
Plugin author information.- Returns:
- object containing the author information.
-
-