Example usage for org.springframework.security.authentication.jaas AuthorityGranter interface-usage

List of usage examples for org.springframework.security.authentication.jaas AuthorityGranter interface-usage

Introduction

In this page you can find the example usage for org.springframework.security.authentication.jaas AuthorityGranter interface-usage.

Usage

From source file samples.jaas.RoleUserAuthorityGranter.java

/**
 * An AuthorityGranter that always grants "ROLE_USER".
 *
 * @author Rob Winch
 */
public class RoleUserAuthorityGranter implements AuthorityGranter {

From source file com.trailmagic.user.UserGroupAuthorityGranter.java

/**
 * Grants authorities based on the User's roles and the roles of the groups
 * to which the User belongs.
 **/
public class UserGroupAuthorityGranter implements AuthorityGranter {
    private static Logger s_log = LoggerFactory.getLogger(UserGroupAuthorityGranter.class);

From source file org.alejandria.security.auth.RoleGranter.java

/**
 *
 *
 * @author juanitodread
 * @version 1.0
 * Sep 3, 2013

From source file de.uni_koeln.spinfo.maalr.login.MaalrAuthorityGranter.java

@Service
@Scope(value = "singleton")
public final class MaalrAuthorityGranter implements AuthorityGranter {

    @Autowired
    private UserInfoBackend userInfos;