Class WorkflowSetupBean
- java.lang.Object
-
- de.xima.fc.workflow.designer.bean.WorkflowSetupBean
-
- All Implemented Interfaces:
Serializable
@Named @ViewScoped public class WorkflowSetupBean extends Object implements Serializable
Bean for initializing the workflow designer. Loads the workflow process model.onPageLoad()
is invoked via a view action.- Since:
- 7.0.0
- Author:
- XIMA MEDIA GmbH
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description WorkflowSetupBean()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description String
getServerId()
void
onPageLoad()
Setup method invoked as a view action when the page is loaded.void
updateOnEntityModified()
Callback invoked via a remote command when an entity was changed.void
updateOnFormPersistChange()
Callback invoked via a remote command when the form persist JSON has changed.
-
-
-
Method Detail
-
getServerId
public String getServerId()
- Returns:
- The server ID, used for the key of workflow backups in the local storage.
-
onPageLoad
public void onPageLoad()
Setup method invoked as a view action when the page is loaded.
-
updateOnEntityModified
public void updateOnEntityModified()
Callback invoked via a remote command when an entity was changed.
-
updateOnFormPersistChange
public void updateOnFormPersistChange()
Callback invoked via a remote command when the form persist JSON has changed. When a form submit button was changed, updates the workflow designer with the new submit buttons.
-
-