![JAR search and dependency download from the Maven repository](/logo.png)
javax.jcr.security.NamedAccessControlPolicy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aem-sdk-api Show documentation
Show all versions of aem-sdk-api Show documentation
The Adobe Experience Manager SDK
/*
* Copyright 2008 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr.security;
import javax.jcr.RepositoryException;
/**
* An NamedAccessControlPolicy
is an opaque access control policy
* that is described by a JCR name and optionally a description.
* NamedAccessControlPolicy
are immutable and can therefore be
* directly applied to a node without additional configuration step.
*
* @since JCR 2.0
*/
public interface NamedAccessControlPolicy extends AccessControlPolicy {
/**
* Returns the name of the access control policy, which is JCR name and
* should be unique among the choices applicable to any particular node.
*
* @return the name of the access control policy. A JCR name.
* @throws RepositoryException if an error occurs.
*/
public String getName() throws RepositoryException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy