Interface ConfigurePlugin


public interface ConfigurePlugin
Plugins that implement this interface can be configured via Indexserver API. Indexserver client applications can call PluginService.configure(de.elo.ix.client.ClientInfo, long, String) in order to read or change the plugin's configuration.
  • Field Summary

    Fields 
    Modifier and Type Field Description
    static java.lang.String DELETE
    Delete the configuration.
    static java.lang.String READ
    Do not update the configuration.
  • Method Summary

    Modifier and Type Method Description
    java.lang.String configure​(java.lang.String configString)
    Update and read configuration.
  • Field Details

  • Method Details

    • configure

      java.lang.String configure​(java.lang.String configString) throws byps.RemoteException
      Update and read configuration.
      Parameters:
      configString - Configuration encoded as string. Format depends on object's internals. If READ is passed, the configuration is not changed. If DELETE is passed, the configuration is deleted.
      Returns:
      Previous configuration.
      Throws:
      byps.RemoteException