Package de.xima.fc.plugin.interfaces
Interface IFCPlugin
-
- All Superinterfaces:
INamedUiElement
,INameProviding
,ITransferable
,Serializable
- All Known Subinterfaces:
IDescriptionProvidingPlugin
,IFCRemoteSyncPlugin
,IPluginAccessProperties
,IPluginActionNodeHandler<TData>
,IPluginAuthenticatorType
,IPluginBackendTheme
,IPluginClientDashboard
,IPluginConfigParamList
,IPluginCustomGUI
,IPluginDataSource
,IPluginEntities
,IPluginFormElementCatalogue
,IPluginFormElementWidget
,IPluginFormPrePersist
,IPluginFormPreProcess
,IPluginFormPreRender
,IPluginFormPreRespond
,IPluginFormPreview
,IPluginFormReplacer
,IPluginFormResource
,IPluginGeneric
,IPluginMailEncryption
,IPluginMenuEntries
,IPluginMonitor
,IPluginPortal
,IPluginProcessing
,IPluginProjectMenu
,IPluginProjectTemplate
,IPluginScopeClient
,IPluginScopeSystem
,IPluginServletAction
,IPluginSessionReplacer
,IPluginShutdown
,IPluginSystemReplacer
,IPluginTemplateReplacer
,IPluginTriggerHandler<TData>
,IPluginValidationRule
,IPluginWorkflowNode
,IPluginWorkflowTrigger
- All Known Implementing Classes:
AFCPlugin
,APluginActionNodeHandler
,APluginTriggerHandler
public interface IFCPlugin extends ITransferable, INameProviding, INamedUiElement
Base interface that all FORMCYCLE plugins must implement. This interface also contains the callback methods for the plugin lifecycle, which is as follows:install(IPluginInstallData)
: When a user upload a plugin for the first time, it is installed and the install method is invoked once.initialize(IPluginInitializeData)
: After the plugin was installed, it may be activated and deactivated multiple times. The initialize method is called each time the plugin is activated.shutdown(IPluginShutdownData)
: Similarly, the shutdown method is called each time the plugin is deactivated.uninstall(IPluginUninstallData)
: Finally, when the plugin is deleted from the system, the shutdown method is called once.
IPluginDefaultLifecycleData.getProperties()
, the plugin is deactivated and then activated again. This also means that while a plugin is active, its configuration cannot change and must not be modified.- Author:
- XIMA MEDIA GmbH
-
-
Field Summary
Fields Modifier and Type Field Description static String
CONFIG_FILENAME
Deprecated.-
Fields inherited from interface de.xima.fc.interfaces.INamedUiElement
ATTR_DISPLAY_NAME
-
Fields inherited from interface de.xima.fc.entities.interfaces.INameProviding
ATTR_NAME, COL_NAME
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description default String
getDescription()
Deprecated.default String
getDescription(Locale locale)
Getter for the description of this plugin.default String
getDisplayName(Locale locale)
String
getName()
Getter for the name of this plugin.default void
initialize(IPluginInitializeData initializeData)
Callback method that is invoked when this plugin is initialized.default void
initPlugin()
Deprecated.default void
install(IPluginInstallData installData)
Callback method that is invoked when this plugin is installed.default void
shutdown()
Deprecated.default void
shutdown(IPluginShutdownData shutdownData)
Callback method that is invoked when this plugin is shut down.default void
uninstall(IPluginUninstallData uninstallData)
Callback method that is invoked when this plugin is uninstalled.
-
-
-
Field Detail
-
CONFIG_FILENAME
@Deprecated static final String CONFIG_FILENAME
Deprecated.Name of the properties file containing the plugin configuration.- See Also:
- Constant Field Values
-
-
Method Detail
-
initialize
default void initialize(IPluginInitializeData initializeData) throws FCPluginException
Callback method that is invoked when this plugin is initialized.- Parameters:
initializeData
-IPluginInitializeData
- Throws:
FCPluginException
- May be thrown when an error occurred during the initialization process. When an error is thrown, this plugin will be deactivated and not put into service.
-
shutdown
default void shutdown(IPluginShutdownData shutdownData) throws FCPluginException
Callback method that is invoked when this plugin is shut down.- Parameters:
shutdownData
-IPluginShutdownData
- Throws:
FCPluginException
- May be throw when an error occurred during the shutdown process. Note that throwing an error will not prevent the plugin from being shut down.
-
uninstall
default void uninstall(IPluginUninstallData uninstallData) throws FCPluginException
Callback method that is invoked when this plugin is uninstalled.- Parameters:
uninstallData
-IPluginUninstallData
- Throws:
FCPluginException
- May be thrown when an error occurred during the uninstall process. Note that throwing an error will not prevent the plugin from being uninstalled.
-
install
default void install(IPluginInstallData installData) throws FCPluginException
Callback method that is invoked when this plugin is installed.- Parameters:
installData
-IPluginInstallData
- Throws:
FCPluginException
- May be thrown when an error occurred during the installation process. When an error is thrown, the plugin will be deactivated and not put into service.
-
getName
String getName()
Getter for the name of this plugin. This name may appear on the user interface.- Specified by:
getName
in interfaceINameProviding
- Returns:
String
The name of this plugin.
-
getDescription
default String getDescription(Locale locale)
Getter for the description of this plugin. This description is shown on the user interface. This description may contain HTML markup.- Parameters:
locale
- The locale for which to get the description.- Returns:
- An HTML markup string with the description for this plugin, or
null
if no description is available.
-
getDisplayName
default String getDisplayName(Locale locale)
- Specified by:
getDisplayName
in interfaceINamedUiElement
- Returns:
- Wert, der das entsprechende Objekt an Oberfläche repräsentiert (wird i.A. zur Laufzeit ermittelt).
-
getDescription
@Deprecated default String getDescription()
Deprecated.- Returns:
- An HTML markup string with the description for this plugin, or
null
if no description is available.
-
initPlugin
@Deprecated default void initPlugin() throws FCPluginException
Deprecated.- Throws:
FCPluginException
- May be thrown when an error occurred during the initialization process. When an error is thrown, this plugin will be deactivated and not put into service.
-
shutdown
@Deprecated default void shutdown()
Deprecated.
-
-