Class CreateNewsletterFunction
- java.lang.Object
-
- org.ametys.plugins.workflow.AbstractWorkflowComponent
-
- org.ametys.cms.workflow.AbstractContentWorkflowComponent
-
- org.ametys.cms.workflow.CreateContentFunction
-
- org.ametys.web.workflow.CreateContentFunction
-
- org.ametys.plugins.newsletter.workflow.CreateNewsletterFunction
-
- All Implemented Interfaces:
com.opensymphony.workflow.FunctionProvider
,Initializable
,Contextualizable
,LogEnabled
,Serviceable
public class CreateNewsletterFunction extends CreateContentFunction implements Initializable, Contextualizable
OSWorkflow function for creating a content.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description protected class
CreateNewsletterFunction.IgnoreRootTagHandler
Ignore the root tag.protected class
CreateNewsletterFunction.NewsletterFilter
Automatic newsletter filter.
-
Field Summary
Fields Modifier and Type Field Description protected Context
_context
The Avalon contextprotected static String
_DEFAULT_LEVEL
The defaut content insertion level.protected static Set<String>
_IGNORE_ATTRS
The list of attributes to ignore.static String
NEWSLETTER_CATEGORY_KEY
Newsletter category key.static String
NEWSLETTER_CONTENT_ID_MAP_KEY
Key for content ID map when processing auto sections.static DateFormat
NEWSLETTER_DATE_FORMAT
The date format.static String
NEWSLETTER_DATE_KEY
Newsletter date key.static String
NEWSLETTER_IS_AUTOMATIC_KEY
Newsletter automatic property key.static String
NEWSLETTER_NUMBER_KEY
Newsletter number key.static String
NEWSLETTER_PROCESS_AUTO_SECTIONS_KEY
Key for "process auto sections".-
Fields inherited from class org.ametys.web.workflow.CreateContentFunction
_currentUserProvider, _siteManager, PAGE_KEY, PAGE_ZONE_KEY, SITE_KEY
-
Fields inherited from class org.ametys.cms.workflow.CreateContentFunction
_contentTypeEP, _contentTypeHelper, _observationManager, _resolver, CONTENT_LANGUAGE_KEY, CONTENT_MIXINS_KEY, CONTENT_NAME_KEY, CONTENT_TITLE_KEY, CONTENT_TITLE_VARIANTS_KEY, CONTENT_TYPES_KEY, INITIAL_VALUE_SUPPLIER, PARENT_CONTENT_ID_KEY, PARENT_CONTENT_METADATA_PATH_KEY, PARENT_CONTEXT_VALUE
-
Fields inherited from class org.ametys.cms.workflow.AbstractContentWorkflowComponent
_contentHelper, CONTENT_KEY, HAS_CHANGED_KEY
-
Fields inherited from class org.ametys.plugins.workflow.AbstractWorkflowComponent
_logger, _manager, CONTEXT_PARAMETERS_KEY, FAIL_CONDITIONS_KEY, RESULT_MAP_KEY, WORKFLOW_ERRORS_KEY, WORKFLOW_WARNS_KEY
-
-
Constructor Summary
Constructors Constructor Description CreateNewsletterFunction()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
_populateContent(Map transientVars, ModifiableContent content)
Populate the content.void
contextualize(Context context)
void
initialize()
void
service(ServiceManager manager)
-
Methods inherited from class org.ametys.web.workflow.CreateContentFunction
_createContent, _getContentRoot, _notifyContentAdded, _populateAdditionalData
-
Methods inherited from class org.ametys.cms.workflow.CreateContentFunction
_eventParamsForContentAdded, _getNonNullVar, _getObjectType, _getSubContentRoot, _initWorkflow, _isMultilingual, _setTitle, execute, getSystemUser
-
Methods inherited from class org.ametys.cms.workflow.AbstractContentWorkflowComponent
getContent
-
Methods inherited from class org.ametys.plugins.workflow.AbstractWorkflowComponent
addWorkflowError, addWorkflowWarning, enableLogging, getConditionFailures, getContextParameters, getResultsMap, getUser
-
-
-
-
Field Detail
-
NEWSLETTER_CATEGORY_KEY
public static final String NEWSLETTER_CATEGORY_KEY
Newsletter category key.
-
NEWSLETTER_NUMBER_KEY
public static final String NEWSLETTER_NUMBER_KEY
Newsletter number key.
-
NEWSLETTER_DATE_KEY
public static final String NEWSLETTER_DATE_KEY
Newsletter date key.
-
NEWSLETTER_IS_AUTOMATIC_KEY
public static final String NEWSLETTER_IS_AUTOMATIC_KEY
Newsletter automatic property key.
-
NEWSLETTER_PROCESS_AUTO_SECTIONS_KEY
public static final String NEWSLETTER_PROCESS_AUTO_SECTIONS_KEY
Key for "process auto sections".
-
NEWSLETTER_CONTENT_ID_MAP_KEY
public static final String NEWSLETTER_CONTENT_ID_MAP_KEY
Key for content ID map when processing auto sections.
-
NEWSLETTER_DATE_FORMAT
public static final DateFormat NEWSLETTER_DATE_FORMAT
The date format.
-
_IGNORE_ATTRS
protected static final Set<String> _IGNORE_ATTRS
The list of attributes to ignore.
-
_DEFAULT_LEVEL
protected static final String _DEFAULT_LEVEL
The defaut content insertion level.- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CreateNewsletterFunction
public CreateNewsletterFunction()
-
-
Method Detail
-
contextualize
public void contextualize(Context context) throws ContextException
- Specified by:
contextualize
in interfaceContextualizable
- Throws:
ContextException
-
service
public void service(ServiceManager manager) throws ServiceException
- Specified by:
service
in interfaceServiceable
- Overrides:
service
in classCreateContentFunction
- Throws:
ServiceException
-
initialize
public void initialize() throws Exception
- Specified by:
initialize
in interfaceInitializable
- Throws:
Exception
-
_populateContent
protected void _populateContent(Map transientVars, ModifiableContent content) throws com.opensymphony.workflow.WorkflowException
Description copied from class:CreateContentFunction
Populate the content.- Overrides:
_populateContent
in classCreateContentFunction
- Parameters:
transientVars
- the transient variables.content
- the content.- Throws:
com.opensymphony.workflow.WorkflowException
- if an error occurs.
-
-