Interface IPluginDefaultLifecycleData
- 
- All Known Subinterfaces:
 IPluginInitializeBeanData,IPluginInitializeData,IPluginInstallData,IPluginShutdownData,IPluginUninstallData,IPluginValidationData
- All Known Implementing Classes:
 DefaultPluginLifecycleData,DefaultPluginValidationData
public interface IPluginDefaultLifecycleData- Author:
 - XIMA MEDIA GmbH
 
 
- 
- 
Field Summary
Fields Modifier and Type Field Description static StringSYSTEM_SCOPE_KEY 
- 
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MandantgetClient()Gets the client where the plugin is installed ornullif it is installed in system-scopeIPluginFileHelpergetFileHelper()Gets the helper-class for working with plugin-filesFrontendServergetFrontendServer()Gets the frontend-server where the plugin is installed ornullif it is installed on an master-serverIPluginManifestgetManifest()Gets the manifest of the plugin.PropertiesgetProperties()Returns the properties of the pluginIPluginResourceHelpergetResourceHelper()Gets the helper-class for working with resourcesStringgetRuntimeKey()Returns the plugin-runtime-keyStringgetScopeKey()Returns the plugin scope-key: Could be theSYSTEM_SCOPE_KEYor the uuid of the client 
 - 
 
- 
- 
Field Detail
- 
SYSTEM_SCOPE_KEY
static final String SYSTEM_SCOPE_KEY
- See Also:
 - Constant Field Values
 
 
 - 
 
- 
Method Detail
- 
getScopeKey
String getScopeKey()
Returns the plugin scope-key: Could be theSYSTEM_SCOPE_KEYor the uuid of the client- Returns:
 Stringuuid orSYSTEM_SCOPE_KEY
 
- 
getRuntimeKey
String getRuntimeKey()
Returns the plugin-runtime-key- Returns:
 Stringthe plugin-runtime-key
 
- 
getClient
Mandant getClient()
Gets the client where the plugin is installed ornullif it is installed in system-scope- Returns:
 Mandantornull if the plugin is installed in system-scope
 
- 
getProperties
Properties getProperties()
Returns the properties of the plugin- Returns:
 Properties
 
- 
getFrontendServer
FrontendServer getFrontendServer()
Gets the frontend-server where the plugin is installed ornullif it is installed on an master-server- Returns:
 FrontendServerornull if the plugin is installed in on an master-server
 
- 
getFileHelper
IPluginFileHelper getFileHelper()
Gets the helper-class for working with plugin-files- Returns:
 IPluginFileHelper
 
- 
getResourceHelper
IPluginResourceHelper getResourceHelper()
Gets the helper-class for working with resources- Returns:
 IPluginResourceHelper
 
- 
getManifest
IPluginManifest getManifest()
Gets the manifest of the plugin.- Returns:
 - The manifest of the plugin.
 
 
 - 
 
 -