All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.mg.common.shiro.tags.HasAnyRolesTag Maven / Gradle / Ivy

The newest version!
package com.mg.common.shiro.tags;

/**
 * Created by liukefu on 2016/1/10.
 */
import com.mg.common.shiro.service.RoleCacheService;
import com.mg.framework.log.ContextLookup;
import org.apache.shiro.web.tags.RoleTag;

public class HasAnyRolesTag extends RoleTag {

    public HasAnyRolesTag() {
    }

    protected boolean showTagBody(String roleNames) {
        RoleCacheService roleCacheService = ContextLookup.getBean(RoleCacheService.class);
        return roleCacheService.hasAnyRole(this.getSubject(),roleNames);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy