Package org.ametys.odf
Class Init
java.lang.Object
org.ametys.runtime.plugin.component.AbstractLogEnabled
org.ametys.odf.Init
- All Implemented Interfaces:
LogEnabled
,Init
,Configurable
,Serviceable
Odf plugin initialization class
-
Field Summary
Modifier and TypeFieldDescriptionprotected I18nUtils
The i18n utilsstatic final String
The odf contents root node namestatic final String
The odf root node nameprotected RootOrgUnitProvider
The orgunit providerprotected AmetysObjectResolver
The Ametys object resolverprotected WorkflowProvider
The workflow -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
configure
(Configuration configuration) void
init()
Method to be implemented by user Init class.void
service
(ServiceManager manager) Methods inherited from class org.ametys.runtime.plugin.component.AbstractLogEnabled
getLogger, setLogger
-
Field Details
-
_ODF_ROOT_NODE
The odf root node name- See Also:
-
_ODF_CONTENTS_ROOT_NODE
The odf contents root node name- See Also:
-
_resolver
The Ametys object resolver -
_orgUnitProvider
The orgunit provider -
_workflowProvider
The workflow -
_i18Utils
The i18n utils
-
-
Constructor Details
-
Init
public Init()
-
-
Method Details
-
service
- Specified by:
service
in interfaceServiceable
- Throws:
ServiceException
-
configure
- Specified by:
configure
in interfaceConfigurable
- Throws:
ConfigurationException
-
init
Description copied from interface:Init
Method to be implemented by user Init class. Here you should manage the business part of your application init. As an Avalon component, class extending this interface have access to all Cocoon-managed components, all plugins, ...
-