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 -
Method Summary
Modifier and TypeMethodDescriptionGets the client where the plugin is installed ornullif it is installed in system scope.Gets the helper-class for working with plugin-filesGets the frontend-server where the plugin is installed ornullif it is installed on an master-serverGets the manifest of the plugin.Gets the plugin file key of the plugin file.Gets the plugin key of the plugin.Returns the properties of the pluginGets the helper-class for working with resourcesReturns the plugin-runtime-keyReturns the plugin scope-key: Could be theSYSTEM_SCOPE_KEYor the uuid of the client
-
Field Details
-
SYSTEM_SCOPE_KEY
- See Also:
-
-
Method Details
-
getScopeKey
String getScopeKey()Returns the plugin scope-key: Could be theSYSTEM_SCOPE_KEYor the uuid of the client- Returns:
- Client UUID or
SYSTEM_SCOPE_KEY
-
getPluginKey
String getPluginKey()Gets the plugin key of the plugin. The key uniquely identifies the plugin. A plugin may consist of multiple JAR files. In that case, each JAR file has a differentgetPluginFileKey().- Returns:
- The plugin key.
-
getPluginFileKey
String getPluginFileKey()Gets the plugin file key of the plugin file. The key uniquely identifies the plugin JAR file. A plugin may consist of multiple JAR files. In that case, each JAR file has a different plugin file key, but the samegetPluginKey(). If a plugin only has one JAR file, the file key is usually empty.- Returns:
- The plugin file key.
-
getRuntimeKey
-
getClient
-
getProperties
-
getFrontendServer
FrontendServer getFrontendServer()Gets the frontend-server where the plugin is installed ornullif it is installed on an master-server- Returns:
- The frontend server, or
nullif the plugin is installed in on an master-server
-
getFileHelper
IPluginFileHelper getFileHelper()Gets the helper-class for working with plugin-files- Returns:
- The plugin file helper
-
getResourceHelper
IPluginResourceHelper getResourceHelper()Gets the helper-class for working with resources- Returns:
- The plugin resource helper.
-
getManifest
-