| javax.jcr.security.AccessControlPolicy
AccessControlPolicy | public interface AccessControlPolicy (Code) | | An AccessControlPolicy is an object with a name and optional
description, either of which can be presented to the user. Examples of
possible AccessControlPolicy implementations include access
control lists, role-responsibility assignments or records retention policies.
since: JCR 2.0 |
Method Summary | |
String | getDescription() Returns a human readable description of the access control policy which
should be sufficient for allowing end users to chose between different
policies to apply to a node. | String | getName() Returns the name of the access control policy, which should be unique
among the choices applicable to any particular node. |
getDescription | String getDescription() throws RepositoryException(Code) | | Returns a human readable description of the access control policy which
should be sufficient for allowing end users to chose between different
policies to apply to a node.
a human readable description of the access control policy. throws: RepositoryException - if an error occurs. |
getName | String getName() throws RepositoryException(Code) | | Returns the name of the access control policy, which should be unique
among the choices applicable to any particular node.
It is presented to provide a easily identifiable choice for
users choosing a policy to assign to a node.
the name of the access control policy. throws: RepositoryException - if an error occurs. |
|
|