Uses of Class
com.jalios.jcms.WFRole
-
Packages that use WFRole Package Description com.jalios.jcms Contains the core JPlatform classes.com.jalios.jcms.handler Contains the javabean classes uses to process HTTP request (aka form handlers).com.jalios.jcms.workspace Contains classes about workspace features. -
-
Uses of WFRole in com.jalios.jcms
Fields in com.jalios.jcms with type parameters of type WFRole Modifier and Type Field Description protected java.util.Set<WFRole>
WFTransition. roleSet
protected java.util.Map<java.lang.String,WFRole>
WorkflowManager. wfRoleMap
Methods in com.jalios.jcms that return WFRole Modifier and Type Method Description WFRole
Workflow. getRole(java.lang.String roleUid)
Returns a WFRole from its unique id (eg "basic-validators").WFRole
Workflow. getRoleByRoleId(java.lang.String roleId)
Returns a WFRole from its role id (eg "validators").WFRole
WorkflowManager. getWFRole(java.lang.String wfRoleId)
Methods in com.jalios.jcms that return types with arguments of type WFRole Modifier and Type Method Description java.util.TreeSet<WFRole>
WFState. getRoleSet()
java.util.Set<WFRole>
WFTransition. getRoleSet()
java.util.Set<WFRole>
Workflow. getRoleSet()
Gets the role set for this workflowMethods in com.jalios.jcms with parameters of type WFRole Modifier and Type Method Description void
WFTransition. addRole(WFRole role)
Adds a role to this transitionvoid
Workflow. addRole(WFRole role)
Adds a WFRole to the workflowvoid
Workflow. addRole(WFRole role, boolean register)
Adds a WFRole to the workflowprotected void
WorkflowManager. addRole(WFRole role)
void
WFState. addTransition(WFState target, WFRole role)
Adds an outgoing transition from this statevoid
Workflow. addTransition(WFState source, WFState target, WFRole role)
Adds a transition in this workflowboolean
Workflow. canChangeState(WFRole role, WFState source, WFState target)
Checks if a given role can move from a given state in a given stateboolean
WFTransition. contains(WFRole role)
Check if a given role can perform this transitionvoid
Workflow. deleteRole(WFRole wfRole, Member member)
Deletes the given WFRolejava.util.Set<WKRole>
WorkflowManager. getWKRoles(WFRole wfRole)
java.util.Set<WFState>
Workflow. getWorkStateSet(WFRole role)
Returns all the states bound to a given WFRole.boolean
Workflow. isRoleInvolved(WFRole role)
Returns true if the given role is involved in this Workflowvoid
WFTransition. removeRole(WFRole role)
Removes a role to this transitionprotected void
WorkflowManager. removeRole(WFRole role)
void
WFState. removeTransition(WFState target, WFRole role)
Remove an outgoing transition from this stateMethod parameters in com.jalios.jcms with type arguments of type WFRole Modifier and Type Method Description static boolean
WFRule. checkRule(java.util.Set<WFRole> roleSet, ObjectIntTreeMap grpVoteMap, java.util.TreeSet<Member> mbrVoteSet, Publication pub, Member mbr)
This method determines whether a transition can be performed.Constructors in com.jalios.jcms with parameters of type WFRole Constructor Description WFRole(WFRole other)
WFRole(WFRole other, boolean clone)
WFTransition(WFState source, WFState target, WFRole role)
Creates a new transition between two states for a given group -
Uses of WFRole in com.jalios.jcms.handler
Fields in com.jalios.jcms.handler declared as WFRole Modifier and Type Field Description protected WFRole
WFEditorHandler. role
protected WFRole
WFEditorHandler. transitRole
Methods in com.jalios.jcms.handler that return WFRole Modifier and Type Method Description WFRole
WFEditorHandler. getAvailableRole()
WFRole
WFEditorHandler. getAvailableTransitRole()
-
Uses of WFRole in com.jalios.jcms.workspace
Fields in com.jalios.jcms.workspace declared as WFRole Modifier and Type Field Description protected WFRole
EditWorkspaceRoleHandler. editableRole
protected WFRole
EditWorkspaceRoleHandler. oldEditableRole
Methods in com.jalios.jcms.workspace that return WFRole Modifier and Type Method Description WFRole
EditWorkspaceRoleHandler. getAvailableEditableRole()
WFRole
WKRole. getWFRole()
Returns the WFRole bound to this WKRole.WFRole
Workspace. getWFRole(WKRole wkRole)
Returns the WFRole bound to the given WKRole.Methods in com.jalios.jcms.workspace that return types with arguments of type WFRole Modifier and Type Method Description java.util.Set<WFRole>
Workspace. getWFRoleSet()
Return a set of all WFRoleMethods in com.jalios.jcms.workspace with parameters of type WFRole Modifier and Type Method Description WKRole
Workspace. getRole(WFRole wfRole)
Get the WKRole linked to a WFRole for a given Workflowboolean
Workspace. hasWKRole(WFRole wfRole)
Check if a WKRole exists in this workspace for the specified WFRoleboolean
EditWorkspaceRoleHandler. isWKRoleEditable(WFRole wfRole)
void
Workspace. linkRole(WFRole wfRole, WKRole wkRole)
Link into the workspace a WFRole to a WKRolevoid
Workspace. setRole(WFRole wfRole, WKRole wkRole)
Binds a WKRole to a WFRole
-