Package com.redwood.scheduler.api.model
Interface IsolationGroup
-
- All Superinterfaces:
BusinessKeyObject
,IsolationGroupComp
,NamedRootObject
,NamedRootObjectComp
,Root
,SchedulerEntity
,SchedulerEntityComp
public interface IsolationGroup extends IsolationGroupComp, NamedRootObject, BusinessKeyObject
Isolation groups are used to isolate the view a subject has of the system. Subjects can be assigned to associated with multiple isolation groups, but only operate within a single isolation group at any given time. Partitions can belong to a single isolation group or all of them (as the GLOBAL partition does). An isolation group can contain multiple partitions.
-
-
Field Summary
Fields Modifier and Type Field Description static String
GLOBAL
The name of the GLOBAL IsolationGroup.static String
OBJECT_TYPE
String that will be returned fromSchedulerEntity.getObjectType()
for "IsolationGroup" objects.static String
ROLENAME_ISOLATION_ADMIN
Deprecated.Isolation Group Administrator is no longer usedstatic String
SEC_PRIV_CREATE
This privilege can be granted at a group level.static String
SEC_PRIV_DELETE
This privilege can be granted at a group level.static String
SEC_PRIV_EDIT
This privilege can be granted at a group level.static String
SEC_PRIV_VIEW
This privilege can be granted at a group level.static String
SEC_RANK_ALL
This rank is made of the following privileges: create , view , edit , deletestatic String
SEC_RANK_CREATE
This rank is made of the following privileges: createstatic String
SEC_RANK_DELETE
This rank is made of the following privileges: create , view , deletestatic String
SEC_RANK_EDIT
This rank is made of the following privileges: create , view , editstatic String
SEC_RANK_NONE
This rank has no privileges assigned to it.static String
SEC_RANK_VIEW
This rank is made of the following privileges: viewstatic QueryObjectType<IsolationGroup>
TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.-
Fields inherited from interface com.redwood.scheduler.api.model.BusinessKeyObject
COPYRIGHT_MESSAGE_BKO, ID_BKO
-
Fields inherited from interface com.redwood.scheduler.api.model.SchedulerEntity
ACTION_AUDIT, ACTION_EXPORT, ACTION_READ, BEHAVIOR_DEPRECATED, BEHAVIOR_NONE, BEHAVIOR_SYSTEM
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description RequiredPermission
checkCreatePrivilege()
Check whether or not the create action can be performed on this object.RequiredPermission
checkDeletePrivilege()
Check whether or not the delete action can be performed on this object.RequiredPermission
checkEditPrivilege()
Check whether or not the edit action can be performed on this object.RequiredPermission
checkViewPrivilege()
Check whether or not the view action can be performed on this object.SubjectIsolationGroup
createSubjectIsolationGroup(Subject newSubject)
Create a newSubjectIsolationGroup
linked to this object.RWIterable<Partition>
getPartitions()
Get anRWIterable
over an ordered collection ofPartitions
.SubjectIsolationGroup
getSubjectIsolationGroupBySubject(Subject subject)
Get the SubjectIsolationGroup by SubjectIsolationGroup.RWIterable<SubjectIsolationGroup>
getSubjectIsolationGroups()
Get anRWIterable
over an ordered collection ofSubjectIsolationGroups
.-
Methods inherited from interface com.redwood.scheduler.api.model.BusinessKeyObject
getBusinessKey
-
Methods inherited from interface com.redwood.scheduler.api.model.NamedRootObject
createObjectReference, getComment, getDescription, getLinkedObjectReferenceByLinkedObject, getLinkedObjectReferenceByName, getLinkedObjectReferences, getName, getSearchName, getSourceObjectReferences, isHidden, setComment, setDescription, setName
-
Methods inherited from interface com.redwood.scheduler.api.model.Root
getCreationTime, getLastModificationTime, getLastModifierSubject
-
Methods inherited from interface com.redwood.scheduler.api.model.SchedulerEntity
canPerform, createSubjectObjectPrivilegeGrant, deleteObject, getAuditTrail, getAuditTrailSize, getBehavior, getEffectiveBehavior, getErrorNameEN, getErrorNameKey, getLLPVersion, getLOV, getLOVSupport, getObjectType, getParentSchedulerEntities, getRuntime, getSubjectObjectPrivilegeGrantBySubject, getSubjectObjectPrivilegeGrants, getUniqueId, getUrl, getUrl, isCreated, isDeletable, isDeleted, isModifiable, isModified, isSelectVersioned, processRelatedObjects, processRelatedObjects, processRelatedObjects, refreshObject, resetObject, resetObject, resetValuesToDefault, selectForRead
-
-
-
-
Field Detail
-
OBJECT_TYPE
static final String OBJECT_TYPE
String that will be returned fromSchedulerEntity.getObjectType()
for "IsolationGroup" objects.- See Also:
- Constant Field Values
-
TYPE
static final QueryObjectType<IsolationGroup> TYPE
Type that can be used inSchedulerSession.executeObjectQuery(QueryObjectType, String, Object...)
.
-
GLOBAL
static final String GLOBAL
The name of the GLOBAL IsolationGroup. Users in this IsolationGroup will not be able to see objects from any other IsolationGroup. This IsolationGroup is automatically assigned if the user has no other IsolationGroup assigned to them by the security subsystem.- See Also:
- Constant Field Values
-
ROLENAME_ISOLATION_ADMIN
@Deprecated static final String ROLENAME_ISOLATION_ADMIN
Deprecated.Isolation Group Administrator is no longer usedRole name for the isolation group administrator.
- See Also:
- Constant Field Values
-
SEC_PRIV_CREATE
static final String SEC_PRIV_CREATE
This privilege can be granted at a group level.- See Also:
- Constant Field Values
-
SEC_PRIV_VIEW
static final String SEC_PRIV_VIEW
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_PRIV_EDIT
static final String SEC_PRIV_EDIT
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_PRIV_DELETE
static final String SEC_PRIV_DELETE
This privilege can be granted at a group level. This privilege can be granted at an instance level.- See Also:
- Constant Field Values
-
SEC_RANK_NONE
static final String SEC_RANK_NONE
This rank has no privileges assigned to it.- See Also:
- Constant Field Values
-
SEC_RANK_CREATE
static final String SEC_RANK_CREATE
This rank is made of the following privileges: create- See Also:
- Constant Field Values
-
SEC_RANK_VIEW
static final String SEC_RANK_VIEW
This rank is made of the following privileges: view- See Also:
- Constant Field Values
-
SEC_RANK_EDIT
static final String SEC_RANK_EDIT
This rank is made of the following privileges: create , view , edit- See Also:
- Constant Field Values
-
SEC_RANK_DELETE
static final String SEC_RANK_DELETE
This rank is made of the following privileges: create , view , delete- See Also:
- Constant Field Values
-
SEC_RANK_ALL
static final String SEC_RANK_ALL
This rank is made of the following privileges: create , view , edit , delete- See Also:
- Constant Field Values
-
-
Method Detail
-
getPartitions
RWIterable<Partition> getPartitions()
Get anRWIterable
over an ordered collection ofPartitions
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The isolation group that this partition belongs to.- Specified by:
getPartitions
in interfaceIsolationGroupComp
- Returns:
- An
RWIterable
over an ordered collection ofPartition
objects .
-
getSubjectIsolationGroups
RWIterable<SubjectIsolationGroup> getSubjectIsolationGroups()
Get anRWIterable
over an ordered collection ofSubjectIsolationGroups
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The subjects that belong to an isolation-group.- Specified by:
getSubjectIsolationGroups
in interfaceIsolationGroupComp
- Returns:
- An
RWIterable
over an ordered collection ofSubjectIsolationGroup
objects .
-
createSubjectIsolationGroup
SubjectIsolationGroup createSubjectIsolationGroup(Subject newSubject)
Create a newSubjectIsolationGroup
linked to this object.- Parameters:
newSubject
- The other parent of theSubjectIsolationGroupSubject
association.- Returns:
- a new
SubjectIsolationGroup
.
-
getSubjectIsolationGroupBySubject
SubjectIsolationGroup getSubjectIsolationGroupBySubject(Subject subject)
Get the SubjectIsolationGroup by SubjectIsolationGroup.- Parameters:
subject
-- Returns:
- the SubjectIsolationGroup, or
null
if it could not be found
-
checkCreatePrivilege
RequiredPermission checkCreatePrivilege()
Check whether or not the create action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkViewPrivilege
RequiredPermission checkViewPrivilege()
Check whether or not the view action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkEditPrivilege
RequiredPermission checkEditPrivilege()
Check whether or not the edit action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
checkDeletePrivilege
RequiredPermission checkDeletePrivilege()
Check whether or not the delete action can be performed on this object.- Returns:
- a
RequiredPermission
instance indicating whether the current user has the privilege. To check this, use isAllowed() on the returned permission.
-
-