Package com.netscape.cmscore.registry
Class PluginInfo
java.lang.Object
com.netscape.cmscore.registry.PluginInfo
- All Implemented Interfaces:
IPluginInfo
The plugin information includes id, name,
classname, and description.
- Author:
- thomask
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionRetrieves the class name of the plugin.getDescription
(Locale locale) Retrieves the localized plugin description.Retrieves the localized plugin name.
-
Constructor Details
-
PluginInfo
-
-
Method Details
-
getName
Description copied from interface:IPluginInfo
Retrieves the localized plugin name.- Specified by:
getName
in interfaceIPluginInfo
- Parameters:
locale
- end-user locale- Returns:
- plugin name
-
getDescription
Description copied from interface:IPluginInfo
Retrieves the localized plugin description.- Specified by:
getDescription
in interfaceIPluginInfo
- Parameters:
locale
- end-user locale- Returns:
- plugin description
-
getClassName
Description copied from interface:IPluginInfo
Retrieves the class name of the plugin. Instance of plugin can be created withClass.forName(info.getClassName());
- Specified by:
getClassName
in interfaceIPluginInfo
- Returns:
- java class name
-