Package com.saperion.wf
Class UserSelectionFlags
- java.lang.Object
-
- com.saperion.wf.UserSelectionFlags
-
public class UserSelectionFlags extends java.lang.Object
UserSelectionFlags can be used to evaluate the user selection filter flags contained in an ExecutionResult.
-
-
Constructor Summary
Constructors Constructor Description UserSelectionFlags()
Instantiates a new UserSelectionFlags with a default value that does not limit the selection of users.UserSelectionFlags(int flags)
Instantiates a new UserSelectionFlags instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
canSelectGroupAndRoleMembers()
boolean
canSelectGroupsAndRoles()
Unused for now, usecanSelectGroupAndRoleMembers()
to decide if groups and roles can be selected.boolean
canSelectSingleUsers()
-
-
-
Constructor Detail
-
UserSelectionFlags
public UserSelectionFlags()
Instantiates a new UserSelectionFlags with a default value that does not limit the selection of users.
-
UserSelectionFlags
public UserSelectionFlags(int flags)
Instantiates a new UserSelectionFlags instance.- Parameters:
flags
- the flags
-
-
Method Detail
-
canSelectSingleUsers
public boolean canSelectSingleUsers()
- Returns:
- true, if selecting single users is allowed
-
canSelectGroupAndRoleMembers
public boolean canSelectGroupAndRoleMembers()
- Returns:
- true, if selecting group- and role-members is allowed
-
canSelectGroupsAndRoles
public boolean canSelectGroupsAndRoles()
Unused for now, usecanSelectGroupAndRoleMembers()
to decide if groups and roles can be selected.- Returns:
- true, if selecting groups and roles is allowed
-
-