List of usage examples for org.apache.shiro.authz.permission WildcardPermission subclass-usage
From source file com.juhui.common.shiro.ViewWildcardPermission.java
/** * implies */ public class ViewWildcardPermission extends WildcardPermission { protected ViewWildcardPermission() {
From source file com.luobo.common.shiro.ViewWildcardPermission.java
/** * implies */ public class ViewWildcardPermission extends WildcardPermission { protected ViewWildcardPermission() {
From source file org.apache.activemq.shiro.authz.ActiveMQWildcardPermission.java
/** * @since 5.10.0 */ public class ActiveMQWildcardPermission extends WildcardPermission { private final boolean caseSensitive;
From source file org.apache.geode.security.GeodePermission.java
/** * GeodePermission defines the resource, the operation, the region and the key involved in the action to be authorized. * * It is passed to the SecurityManager for the implementation to decide whether to grant a user this permission or not. */ public class GeodePermission extends WildcardPermission {
From source file org.apache.geode.security.ResourcePermission.java
/**
* ResourcePermission defines the resource, the operation, the region and the key involved in the
* action to be authorized.
*
* It is passed to the SecurityManager for the implementation to decide whether to grant a user this
* permission or not.
From source file org.apache.isis.security.shiro.authorization.IsisPermission.java
public class IsisPermission extends WildcardPermission { private static final long serialVersionUID = 1L; private static final Pattern PATTERN = Pattern.compile("([!]?)([^/]+)[/](.+)"); private static ThreadLocal<Map<String, List<IsisPermission>>> VETOING_PERMISSIONS = new ThreadLocal<Map<String, List<IsisPermission>>>() {
From source file org.apache.usergrid.security.shiro.CustomPermission.java
public class CustomPermission extends WildcardPermission { /** * */ private static final String ME = "/me/";
From source file org.obiba.mica.security.realm.ExtendedWildcardPermission.java
/**
* If the permission's instance value is a path, some derived permissions will be evaluated: parent path should be
* viewable and children path should be applied the same actions.
*
* @see WildcardPermission
*/
From source file org.pepstock.jem.node.security.StringPermission.java
/**
* Extension of wildcard permission of SHIRO, necessary to implement the regexpression premission.
* The permission must be composed of 3 parts or less (never more than 3):<br>
* <br>
* <code>[part1]:[part2]:[part3]</code>
* <br>
From source file org.sonatype.nexus.repository.security.RepositoryAdminPermission.java
/** * Repository administration permission. * * @since 3.0 */ public class RepositoryAdminPermission extends WildcardPermission {