Package org.ametys.runtime.plugin
Class Plugin
- java.lang.Object
-
- org.ametys.runtime.plugin.Plugin
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Collection<String>
getExtensionPoints()
Returns the ids of the extension points defined by this plugin.Map<String,Feature>
getFeatures()
Returns theFeature
s defined by this plugin.String
getName()
Returns this plugin's name.String
getVersion()
Returns this plugin's version, or null if not specified.
-
-
-
Method Detail
-
getVersion
public String getVersion()
Returns this plugin's version, or null if not specified.- Returns:
- this plugin's version.
-
getFeatures
public Map<String,Feature> getFeatures()
Returns theFeature
s defined by this plugin.- Returns:
- the
Feature
s defined by this plugin.
-
getExtensionPoints
public Collection<String> getExtensionPoints()
Returns the ids of the extension points defined by this plugin.- Returns:
- the ids of the extension points defined by this plugin.
-
-