Package com.netscape.certsrv.registry
Interface IPluginInfo
- All Known Implementing Classes:
PluginInfo
public interface IPluginInfo
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.
- Version:
- $Revision$, $Date$
-
Method Summary
Modifier and TypeMethodDescriptionRetrieves the class name of the plugin.getDescription
(Locale locale) Retrieves the localized plugin description.Retrieves the localized plugin name.
-
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
String getClassName()Retrieves the class name of the plugin. Instance of plugin can be created withClass.forName(info.getClassName());
- Returns:
- java class name
-