List of usage examples for org.springframework.security.core Authentication interface-usage
From source file waffle.spring.WindowsAuthenticationToken.java
/** * A Windows authentication token. * * @author dblock[at]dblock[dot]org */ public class WindowsAuthenticationToken implements Authentication {
From source file com.ge.predix.uaa.token.lib.RemoteUserAuthentication.java
/**
* Authentication token representing a user decoded from a UAA access token.
*
* @author Dave Syer
*
*/
From source file shiver.me.timbers.security.web.advanced.spring.UserAuthentication.java
/** * @author Karl Bennett */ public class UserAuthentication implements Authentication { private final User user;
From source file com.erudika.para.security.UserAuthentication.java
/** * A simple wrapper for the authentication object * @author Alex Bogdanovski [alex@erudika.com] */ public class UserAuthentication implements Authentication { private static final long serialVersionUID = 1L;
From source file scratch.cucumber.example.security.spring.UserAuthentication.java
/** * @author Karl Bennett */ public class UserAuthentication implements Authentication { private final User user;
From source file com.sibvisions.rad.server.security.spring.WrappedAuthentication.java
/** * The <code>WrappedAuthentication</code> extends the authentication object to append additional properties. * * @author Thomas Krautinger */ public class WrappedAuthentication implements Authentication {
From source file org.cloudfoundry.identity.uaa.authentication.AuthzAuthenticationRequest.java
/**
* Authentication request object which contains the JSON data submitted to the /authorize endpoint.
*
* This token is not used to represent an authenticated user.
*
* @author Luke Taylor
From source file org.bremersee.common.security.core.context.RunAsAuthentication.java
/**
* <p>
* An authentication implementation that will be used in the {@link RunAsUtil} class.
* </p>
*
* @author Christian Bremer
From source file de.sainth.recipe.backend.security.RecipeManagerAuthenticationToken.java
public class RecipeManagerAuthenticationToken implements Authentication { private final Long userId; private final List<SimpleGrantedAuthority> permissions; private final String role; private boolean authenticated;
From source file org.apigw.authserver.api.SimpleAuthentication.java
public class SimpleAuthentication implements Authentication { private static final Logger log = LoggerFactory.getLogger(SimpleAuthentication.class); private static final long serialVersionUID = 1L; private final User principal;