Interface GenericPluginState

All Known Implementing Classes:
AccessibilityData

public interface GenericPluginState
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Initialize the class with the authentication context.
    Process the class data into a form so that it's value can be saved into the namespace by the plugin.
  • Method Details

    • init

      void init<wbr>(AuthenticationContext context)
      Initialize the class with the authentication context. The plugin calls this method on the implementation class. The plugin instance configuration data and state data obtained by the plugin is made available to the class via the context. The implementation class looks for specific data and does necessary initializations via this method.
      Parameters:
      context - : plugin authentication context
    • process

      String process() throws PluginRuntimeException
      Process the class data into a form so that it's value can be saved into the namespace by the plugin. If the class does not find some of the data that it is expecting, this method will throw an error with the name of the missing data. It also publishes the data got from the page to the specific namespace attributes.
      Throws:
      PluginRuntimeException