Interface SubjectComp
-
- All Known Subinterfaces:
Subject
public interface SubjectComp
This class is only required in order to be able to provide binary compatibility with older releases. You should never access this class directly.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description Iterator<SubjectGlobalPrivilegeGrant>
getAssignedSubjectGlobalPrivilegeGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectGlobalPrivilegeGrants()
instead.Iterator<SubjectObjectPrivilegeGrant>
getAssignedSubjectObjectPrivilegeGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectObjectPrivilegeGrants()
instead.Iterator<SubjectObjectTypePrivilegeGrant>
getAssignedSubjectObjectTypePrivilegeGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectObjectTypePrivilegeGrants()
instead.Iterator<SubjectRoleGrant>
getAssignedSubjectRoleGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectRoleGrants()
instead.Iterator<SubjectRoleGrant>
getAssignedToSubjectRoleGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedToSubjectRoleGrants()
instead.Iterator<OperatorMessage>
getOperatorMessages()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getOperatorMessages()
instead.Iterator<ProcessMonitorLog>
getProcessMonitorLogs()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getProcessMonitorLogs()
instead.Iterator<SubjectIsolationGroup>
getSubjectIsolationGroups()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getSubjectIsolationGroups()
instead.
-
-
-
Method Detail
-
getOperatorMessages
@Deprecated Iterator<OperatorMessage> getOperatorMessages()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getOperatorMessages()
instead.Get anIterator
over an ordered collection ofOperatorMessages
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. What type of object raised this operator message?- Returns:
- An
Iterator
over an ordered collection ofOperatorMessage
objects .
-
getProcessMonitorLogs
@Deprecated Iterator<ProcessMonitorLog> getProcessMonitorLogs()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getProcessMonitorLogs()
instead.Get anIterator
over an ordered collection ofProcessMonitorLogs
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Who replied to this User Message- Returns:
- An
Iterator
over an ordered collection ofProcessMonitorLog
objects .
-
getAssignedSubjectGlobalPrivilegeGrants
@Deprecated Iterator<SubjectGlobalPrivilegeGrant> getAssignedSubjectGlobalPrivilegeGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectGlobalPrivilegeGrants()
instead.Get anIterator
over an ordered collection ofAssignedSubjectGlobalPrivilegeGrants
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which Subject was granted the Granted Subject. This Subject must have GrantToable==true.- Returns:
- An
Iterator
over an ordered collection ofSubjectGlobalPrivilegeGrant
objects .
-
getAssignedSubjectRoleGrants
@Deprecated Iterator<SubjectRoleGrant> getAssignedSubjectRoleGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectRoleGrants()
instead.Get anIterator
over an ordered collection ofAssignedSubjectRoleGrants
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which Subject was granted the Granted Subject. This Subject must have GrantToable==true.- Returns:
- An
Iterator
over an ordered collection ofSubjectRoleGrant
objects .
-
getAssignedSubjectObjectPrivilegeGrants
@Deprecated Iterator<SubjectObjectPrivilegeGrant> getAssignedSubjectObjectPrivilegeGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectObjectPrivilegeGrants()
instead.Get anIterator
over an ordered collection ofAssignedSubjectObjectPrivilegeGrants
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which Subject was granted the Granted Subject. This Subject must have GrantToable==true.- Returns:
- An
Iterator
over an ordered collection ofSubjectObjectPrivilegeGrant
objects .
-
getAssignedSubjectObjectTypePrivilegeGrants
@Deprecated Iterator<SubjectObjectTypePrivilegeGrant> getAssignedSubjectObjectTypePrivilegeGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedSubjectObjectTypePrivilegeGrants()
instead.Get anIterator
over an ordered collection ofAssignedSubjectObjectTypePrivilegeGrants
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which Subject was granted the Granted Subject. This Subject must have GrantToable==true.- Returns:
- An
Iterator
over an ordered collection ofSubjectObjectTypePrivilegeGrant
objects .
-
getSubjectIsolationGroups
@Deprecated Iterator<SubjectIsolationGroup> getSubjectIsolationGroups()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getSubjectIsolationGroups()
instead.Get anIterator
over an ordered collection ofSubjectIsolationGroups
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. The isolation-groups that a subject belongs to.- Returns:
- An
Iterator
over an ordered collection ofSubjectIsolationGroup
objects .
-
getAssignedToSubjectRoleGrants
@Deprecated Iterator<SubjectRoleGrant> getAssignedToSubjectRoleGrants()
Deprecated.this method should never be used directly, and is only provided to ensure binary compatibility with previous releases of the software, useSubject.getAssignedToSubjectRoleGrants()
instead.Get anIterator
over an ordered collection ofAssignedToSubjectRoleGrants
. If the collection is empty, an empty iterator will be returned, that is, this method will never returnnull
. Which Subject was granted to the Grantee Subject. This Subject must have Grantable==true.- Returns:
- An
Iterator
over an ordered collection ofSubjectRoleGrant
objects .
-
-