Example usage for org.springframework.security.authentication AuthenticationDetailsSource interface-usage

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

Introduction

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

Usage

From source file org.cloudfoundry.identity.uaa.authentication.UaaAuthenticationDetailsSource.java

/**
 * @author Luke Taylor
 */
public class UaaAuthenticationDetailsSource
        implements AuthenticationDetailsSource<HttpServletRequest, UaaAuthenticationDetails> {
    @Override

From source file org.carewebframework.security.spring.CWFAuthenticationDetailsSource.java

/**
 * Generates the details object to associate with the authentication object.
 */
public class CWFAuthenticationDetailsSource
        implements AuthenticationDetailsSource<HttpServletRequest, CWFAuthenticationDetails> {

From source file com.rockagen.gnext.service.spring.security.extension.BasicWebAuthenticationDetailsSource.java

/**
 * An authenticationDetailsSource extension
 * 
 * @author RA
 */
public class BasicWebAuthenticationDetailsSource

From source file at.ac.univie.isc.asio.security.DelegationDetailsSource.java

/**
 * Extract delegated credentials from the {@code 'Delegate-Authorization'} http header. Expects the
 * credentials to be given as defined in the {@code Basic Authentication} scheme.
 */
public final class DelegationDetailsSource
        implements AuthenticationDetailsSource<HttpServletRequest, DelegatedCredentialsDetails> {

From source file whitelabel.cloud.webapp.security.spring.CloudWebAuthenticationDetailsSource.java

public class CloudWebAuthenticationDetailsSource
        implements AuthenticationDetailsSource<HttpServletRequest, CloudWebAutenticationDetails> {

    @Override
    public CloudWebAutenticationDetails buildDetails(HttpServletRequest context) {
        return new CloudWebAutenticationDetails(context);

From source file org.springframework.security.web.authentication.preauth.websphere.WebSpherePreAuthenticatedWebAuthenticationDetailsSource.java

/**
 * This AuthenticationDetailsSource implementation will set the pre-authenticated granted
 * authorities based on the WebSphere groups for the current WebSphere user, mapped using
 * the configured Attributes2GrantedAuthoritiesMapper.
 *
 * @author Ruud Senden

From source file edu.uchicago.duo.security.DuoAuthenticationDetailsSource.java

public class DuoAuthenticationDetailsSource
        implements AuthenticationDetailsSource<HttpServletRequest, GrantedAuthoritiesContainer> {

    protected final Log log = LogFactory.getLog(getClass());

    @Override

From source file org.italiangrid.storm.webdav.authz.VOMSPreAuthDetailsSource.java

public class VOMSPreAuthDetailsSource implements
        AuthenticationDetailsSource<HttpServletRequest, PreAuthenticatedGrantedAuthoritiesWebAuthenticationDetails> {

    public final List<VOMSAuthDetailsSource> vomsAuthoritiesSources;

    private final StorageAreaConfiguration saConfig;

From source file org.hyperic.hq.ui.security.HQAuthenticationDetailsSource.java

public class HQAuthenticationDetailsSource implements AuthenticationDetailsSource {

    private final Log log = LogFactory.getLog(HQAuthenticationDetailsSource.class.getName());

    /* (non-Javadoc)
     * @see org.springframework.security.authentication.AuthenticationDetailsSource#buildDetails(java.lang.Object)

From source file org.springframework.security.web.authentication.preauth.j2ee.J2eeBasedPreAuthenticatedWebAuthenticationDetailsSource.java

/**
 * Implementation of AuthenticationDetailsSource which converts the user's J2EE roles (as
 * obtained by calling {@link HttpServletRequest#isUserInRole(String)}) into
 * {@code GrantedAuthority}s and stores these in the authentication details object.
 *
 * @author Ruud Senden