Package com.netscape.cmscore.registry
Class PluginInfo
java.lang.Object
com.netscape.cmscore.registry.PluginInfo
The plugin information includes name,
class name, and description. The localizable
name and description are information
for end-users.
The class name can be used to create an instance of the plugin.
- 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
Retrieves the localized plugin name.- Parameters:
locale
- end-user locale- Returns:
- plugin name
-
getDescription
Retrieves the localized plugin description.- Parameters:
locale
- end-user locale- Returns:
- plugin description
-
getClassName
Retrieves the class name of the plugin. Instance of plugin can be created with Class.forName(info.getClassName());- Returns:
- java class name
-