Class PluginInfo

java.lang.Object
com.netscape.cmscore.registry.PluginInfo

public class PluginInfo extends Object
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 Details

  • Method Details

    • getName

      public String getName(Locale locale)
      Retrieves the localized plugin name.
      Parameters:
      locale - end-user locale
      Returns:
      plugin name
    • getDescription

      public String getDescription(Locale locale)
      Retrieves the localized plugin description.
      Parameters:
      locale - end-user locale
      Returns:
      plugin description
    • getClassName

      public String getClassName()
      Retrieves the class name of the plugin. Instance of plugin can be created with Class.forName(info.getClassName());
      Returns:
      java class name