Package nl.gx.webmanager.cms.workflow
Interface WorkflowActivityRole
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addRole(Role role)
Adds a role to the Workflow activity roles object.Role[]
getRoles()
Returns the roles assosiated with this Workflow activity role.WorkflowActivity
getWorkflowActivity()
Returns the Workflow activity assosiated with this Workflow activity role.void
setRoles(Role[] roles)
Sets the roles associated with this Workflow activity roles object.void
setWorkflowActivity(WorkflowActivity workflowActivity)
Sets the workflow activity on this workflow activity role.
-
-
-
Method Detail
-
getWorkflowActivity
WorkflowActivity getWorkflowActivity()
Returns the Workflow activity assosiated with this Workflow activity role.- Returns:
- the Workflow activity assosiated with this Workflow activity role
-
setWorkflowActivity
void setWorkflowActivity(WorkflowActivity workflowActivity)
Sets the workflow activity on this workflow activity role.- Parameters:
workflowActivity
- the workflow activity for this workflow activity role
-
getRoles
Role[] getRoles()
Returns the roles assosiated with this Workflow activity role.- Returns:
- the roles assosiated with this Workflow activity role
-
setRoles
void setRoles(Role[] roles)
Sets the roles associated with this Workflow activity roles object.- Parameters:
roles
- The roles to set
-
addRole
void addRole(Role role)
Adds a role to the Workflow activity roles object.- Parameters:
role
- The role to add
-
-