public interface Plugin
PluginConfiguration will be automatically discovered when the plugin JAR is loaded.| Modifier and Type | Method and Description | 
|---|---|
| List<? extends SoapUIAction> | getActions()Gets all the SoapUI actions provided by this plugin. | 
| Collection<? extends ApiImporter> | getApiImporters()Gets all the API importers provided by this plugin. | 
| Collection<? extends SoapUIFactory> | getFactories()Gets all the factories provided by this plugin. | 
| PluginInfo | getInfo() | 
| List<Class<? extends SoapUIListener>> | getListeners()Gets all the listeners provided by this plugin. | 
| boolean | hasSameIdAs(Plugin otherPlugin)Returns  trueif and only if the plugin passed as a parameter is identified as the same plugin,
 i.e. | 
| void | initialize()This method is invoked by SoapUI when the plugin is loaded and should ensure that the plugin is fully initialized. | 
| boolean | isActive()Returns a boolean indicating whether this plugin should be activated when loaded. | 
PluginInfo getInfo()
boolean isActive()
true if and only if this plugin should be enabledvoid initialize()
List<Class<? extends SoapUIListener>> getListeners()
List<? extends SoapUIAction> getActions()
Collection<? extends ApiImporter> getApiImporters()
Collection<? extends SoapUIFactory> getFactories()
boolean hasSameIdAs(Plugin otherPlugin)
true if and only if the plugin passed as a parameter is identified as the same plugin,
 i.e. if the ID of this plugin matches this.otherPlugin - Copyright © 2019. All Rights Reserved.