org.springframework.security.acls.model.UnloadedSidException Java Examples

The following examples show how to use org.springframework.security.acls.model.UnloadedSidException. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: AclRecord.java    From kylin-on-parquet-v2 with Apache License 2.0 5 votes vote down vote up
@Override
public boolean isGranted(List<Permission> permission, List<Sid> sids, boolean administrativeMode)
        throws NotFoundException, UnloadedSidException {
    Assert.notEmpty(sids, "SIDs required");
    Assert.notEmpty(permission, "Permissions required");

    return permissionGrantingStrategy.isGranted(this, permission, sids, administrativeMode);
}
 
Example #2
Source File: AclRecord.java    From kylin with Apache License 2.0 5 votes vote down vote up
@Override
public boolean isGranted(List<Permission> permission, List<Sid> sids, boolean administrativeMode)
        throws NotFoundException, UnloadedSidException {
    Assert.notEmpty(sids, "SIDs required");
    Assert.notEmpty(permission, "Permissions required");

    return permissionGrantingStrategy.isGranted(this, permission, sids, administrativeMode);
}
 
Example #3
Source File: MutableAclRecord.java    From kylin-on-parquet-v2 with Apache License 2.0 4 votes vote down vote up
@Override
public boolean isGranted(List<Permission> permission, List<Sid> sids, boolean administrativeMode)
        throws NotFoundException, UnloadedSidException {
    return acl.isGranted(permission, sids, administrativeMode);
}
 
Example #4
Source File: MutableAclRecord.java    From kylin with Apache License 2.0 4 votes vote down vote up
@Override
public boolean isGranted(List<Permission> permission, List<Sid> sids, boolean administrativeMode)
        throws NotFoundException, UnloadedSidException {
    return acl.isGranted(permission, sids, administrativeMode);
}
 
Example #5
Source File: NextServerAcl.java    From nextreports-server with Apache License 2.0 4 votes vote down vote up
@Override
public boolean isGranted(List<Permission> permission, List<Sid> sids, boolean administrativeMode) 
		throws NotFoundException, UnloadedSidException {
	return isGranted(permission);
}