![JAR search and dependency download from the Maven repository](/logo.png)
javax.jcr.security.AccessControlEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jcr Show documentation
Show all versions of jcr Show documentation
The Content Repository API for JavaTM Technology Version 2.0 is specified by JSR-283.
This module contains the complete API as specified.
The newest version!
/*
* Copyright 2008 Day Management AG, Switzerland. All rights reserved.
*/
package javax.jcr.security;
import java.security.Principal;
/**
* An AccessControlEntry
represents the association of one or more
* Privilege
objects with a specific Principal
.
*
* @since JCR 2.0
*/
public interface AccessControlEntry {
/**
* Returns the principal associated with this access control entry.
*
* @return a Principal
.
*/
public Principal getPrincipal();
/**
* Returns the privileges associated with this access control entry.
*
* @return an array of Privilege
s.
*/
public Privilege[] getPrivileges();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy