java.lang.Object com.ibm.broker.config.proxy.AccessControlEntryPrincipalType
public final class AccessControlEntryPrincipalType
extends Object
Defines a set of principal types over which security can be applied. Each instance represents a type of principal (e.g. user or group) which, when associated with an AccessControlEntryPermission and applied to an AdministeredObject, defines the level of control a principal has over the object.
com.ibm.broker.config.proxy.AccessControlEntryPrincipalType
|
|
Responsibilities | Describes the name component of an entry in an access control table. |
Internal Collaborators | None |
Change Activity: --------- ----------- ------------- ------------------------------------ Reason: Date: Originator: Comments: --------- ----------- ------------- ------------------------------------ 19590.5.5 2004-07-20 martynh v6 Release
Field | Description |
---|---|
group | States that the name component of the access control entry to which this principal type is related is an operating system group. |
user | States that the name component of the access control entry to which this principal type is related is a user. |
Method | Description |
---|---|
AccessControlEntryPrincipalType getAccessControlEntryPrincipalType(String) | Get an AccessControlEntryPrincipalType object from a textual representation. |
String toString() | Return a textual representation of the principal type. |
public static final com.ibm.broker.config.proxy.AccessControlEntryPrincipalType groupStates that the name component of the access control entry to which this principal type is related is an operating system group.
public static final com.ibm.broker.config.proxy.AccessControlEntryPrincipalType userStates that the name component of the access control entry to which this principal type is related is a user.
public static final AccessControlEntryPrincipalType getAccessControlEntryPrincipalType(String principalString)Get an AccessControlEntryPrincipalType object from a textual representation. The constants are defined in the AttributeConstants interface.
- Parameters
- principalString - String representation of a principal type as returned by AccessControlEntryPrincipalType.toString().
- Returns
- AccessControlEntryPrincipalType constant which corresponds to the string passed in or null, if no such principal type exists.
public final String toString()Return a textual representation of the principal type.
- Returns
- String representation of the principal type
- Overrides
- toString in class Object