Package com.blueriq.component.api.plugin
Interface IPluginMetadata
- All Known Implementing Classes:
PluginMetadata
public interface IPluginMetadata
Interface for defining the metadata for plugins.
- Since:
- 8.0
- Author:
- Danny Roest
-
Method Summary
Modifier and TypeMethodDescriptionThis method returns the artifactId.This method returns the description of the plugin.This method returns the groupId of the plugin.getName()
This method returns the name of the plugin.getUrl()
This method returns the url for more information about the plugin.This method returns the version the plugin.
-
Method Details
-
getName
String getName()This method returns the name of the plugin.- Returns:
- the name of the plugin
-
getVersion
PluginVersion getVersion()This method returns the version the plugin.- Returns:
- the version of the plugin.
-
getDescription
String getDescription()This method returns the description of the plugin.- Returns:
- the description of this plugin.
-
getGroupId
String getGroupId()This method returns the groupId of the plugin.- Returns:
- the GroupId
-
getArtifactId
String getArtifactId()This method returns the artifactId.- Returns:
- the artifactId
-
getUrl
String getUrl()This method returns the url for more information about the plugin.- Returns:
- the url, may be null.
-