Example usage for org.apache.shiro.authc.credential CredentialsMatcher interface-usage

List of usage examples for org.apache.shiro.authc.credential CredentialsMatcher interface-usage

Introduction

In this page you can find the example usage for org.apache.shiro.authc.credential CredentialsMatcher interface-usage.

Usage

From source file be.rubus.octopus.jsr375.demo.jsr375.IdentityStoreMatcher.java

/**
 *
 */
public class IdentityStoreMatcher implements CredentialsMatcher, Initializable {

    public static final String CALLER_GROUPS = "callerGroups";

From source file cn.com.rexen.ext.shiro.authc.x509.AbstractX509CredentialsMatcher.java

public abstract class AbstractX509CredentialsMatcher implements CredentialsMatcher {

    protected static final Logger LOGGER = LoggerFactory.getLogger(AbstractX509CredentialsMatcher.class);

    @Override
    public final boolean doCredentialsMatch(AuthenticationToken token, AuthenticationInfo info) {

From source file com.bennavetta.appsite.security.SCryptCredentialsMatcher.java

public class SCryptCredentialsMatcher implements CredentialsMatcher {
    private Logger log = LoggerFactory.getLogger(getClass());

    @Override
    public boolean doCredentialsMatch(AuthenticationToken token, AuthenticationInfo info) {
        UsernamePasswordToken login = (UsernamePasswordToken) token;

From source file com.epimorphics.appbase.security.AppRealmCredentialsMatcher.java

/**
 * Credentials which checks the token to test if it has already
 * been verified using OpenID.
 *
 * @author <a href="mailto:dave@epimorphics.com">Dave Reynolds</a>
 */

From source file com.epimorphics.registry.security.RegCredentialsMatcher.java

/**
 * Credentials which checks the token to test if it has already
 * been verified using OpenID.
 *
 * @author <a href="mailto:dave@epimorphics.com">Dave Reynolds</a>
 */

From source file com.imos.sample.CustomCredentialsMatcher.java

/**
 *
 * @author alok
 */
public class CustomCredentialsMatcher implements CredentialsMatcher {

From source file com.monkeyk.os.oauth.shiro.OAuth2CredentialsMatcher.java

/**
 * 2015/10/16
 * <p/>
 * A dispatcher for OAUTH credentials matcher when if the {@link org.apache.shiro.authc.AuthenticationToken} is {@link com.monkeyk.os.oauth.shiro.OAuth2Token} or not;
 * <p/>
 * Different  AuthenticationToken  that different  module(authz -> authzCredentialsMatcher, resources ->  resourcesCredentialsMatcher)

From source file com.redhat.rcm.nexus.security.RemoteUserCredentialsMatcher.java

@Named(RemoteUserCredentialsMatcher.ID)
public class RemoteUserCredentialsMatcher implements CredentialsMatcher {

    public static final String ID = "remote-user";

    private final Log logger = LogFactory.getLog(this.getClass());

From source file com.wegas.core.security.facebook.FacebookCredentialsMatcher.java

/**
 *
 * @author Francois-Xavier Aeberhard <fx@red-agent.com>
 */
public class FacebookCredentialsMatcher implements CredentialsMatcher {

From source file edu.wisc.nexus.auth.rut.realm.RemoteUserTokenAuthCredentialsMatcher.java

/**
 * @author Eric Dalquist
 * @version $Revision$
 */
class RemoteUserTokenAuthCredentialsMatcher implements CredentialsMatcher {
    private final CredentialsMatcher tokenCredentialsMatcher = new SimpleCredentialsMatcher();