com.bazaarvoice.emodb.auth.shiro.RolePermissionSet Maven / Gradle / Ivy
package com.bazaarvoice.emodb.auth.shiro;
import org.apache.shiro.authz.Permission;
import java.util.Set;
/**
* Interface for a set of role permissions. Used instead of Set<Permission>
to allow for a
* type-safe self-validating implementation used by validating caches.
*/
public interface RolePermissionSet {
public Set permissions();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy