Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep
A C D E G I L M O P S T U

A

AbstractAuthenticationToken - class org.acegisecurity.providers.AbstractAuthenticationToken.
Provides a String representation of the Authentication token.
AbstractAuthenticationToken() - Constructor for class org.acegisecurity.providers.AbstractAuthenticationToken
 
AuthenticationProvider - interface org.acegisecurity.providers.AuthenticationProvider.
Indicates a class can process a specific org.acegisecurity.Authentication implementation.
afterPropertiesSet() - Method in class org.acegisecurity.providers.ProviderManager
 
applicationEventPublisher - Variable in class org.acegisecurity.providers.ProviderManager
 
authenticate(Authentication) - Method in interface org.acegisecurity.providers.AuthenticationProvider
Performs authentication with the same contract as AuthenticationManager.authenticate(Authentication)>AuthenticationManager.authenticate(Authentication) 55 .
authenticate(Authentication) - Method in class org.acegisecurity.providers.TestingAuthenticationProvider
 
authenticated - Variable in class org.acegisecurity.providers.TestingAuthenticationToken
 
authenticated - Variable in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
authorities - Variable in class org.acegisecurity.providers.TestingAuthenticationToken
 
authorities - Variable in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 

C

checkIfValidList(List) - Method in class org.acegisecurity.providers.ProviderManager
 
credentials - Variable in class org.acegisecurity.providers.TestingAuthenticationToken
 
credentials - Variable in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 

D

details - Variable in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
doAddExtraDefaultExceptionMappings(Properties) - Method in class org.acegisecurity.providers.ProviderManager
Provided so subclasses can add extra exception mappings during startup if no exception mappings are injected by the IoC container.
doAuthentication(Authentication) - Method in class org.acegisecurity.providers.ProviderManager
Attempts to authenticate the passed org.acegisecurity.Authentication object.

E

equals(Object) - Method in class org.acegisecurity.providers.AbstractAuthenticationToken
 
exceptionMappings - Variable in class org.acegisecurity.providers.ProviderManager
 

G

getAuthorities() - Method in class org.acegisecurity.providers.TestingAuthenticationToken
 
getAuthorities() - Method in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
getCredentials() - Method in class org.acegisecurity.providers.TestingAuthenticationToken
 
getCredentials() - Method in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
getDetails() - Method in class org.acegisecurity.providers.AbstractAuthenticationToken
Subclasses should override if they wish to provide additional details about the authentication event.
getDetails() - Method in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
Usually a org.acegisecurity.ui.WebAuthenticationDetails.
getName() - Method in class org.acegisecurity.providers.AbstractAuthenticationToken
 
getPrincipal() - Method in class org.acegisecurity.providers.TestingAuthenticationToken
 
getPrincipal() - Method in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
getProviders() - Method in class org.acegisecurity.providers.ProviderManager
 
getSessionController() - Method in class org.acegisecurity.providers.ProviderManager
The configured ConcurrentSessionController is returned or the NullConcurrentSessionController if a specific one has not been set.

I

isAuthenticated() - Method in class org.acegisecurity.providers.TestingAuthenticationToken
 
isAuthenticated() - Method in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 

L

logger - Static variable in class org.acegisecurity.providers.ProviderManager
 

M

messages - Variable in class org.acegisecurity.providers.ProviderManager
 

O

org.acegisecurity.providers - package org.acegisecurity.providers
 

P

ProviderManager - class org.acegisecurity.providers.ProviderManager.
Iterates an org.acegisecurity.Authentication request through a list of AuthenticationProviders.
ProviderManager() - Constructor for class org.acegisecurity.providers.ProviderManager
 
ProviderNotFoundException - exception org.acegisecurity.providers.ProviderNotFoundException.
Thrown by ProviderManager if no AuthenticationProvider could be found that supports the presented org.acegisecurity.Authentication object.
ProviderNotFoundException(String) - Constructor for class org.acegisecurity.providers.ProviderNotFoundException
Constructs a ProviderNotFoundException with the specified message.
ProviderNotFoundException(String, Throwable) - Constructor for class org.acegisecurity.providers.ProviderNotFoundException
Constructs a ProviderNotFoundException with the specified message and root cause.
principal - Variable in class org.acegisecurity.providers.TestingAuthenticationToken
 
principal - Variable in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
providers - Variable in class org.acegisecurity.providers.ProviderManager
 

S

sessionController - Variable in class org.acegisecurity.providers.ProviderManager
 
setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.acegisecurity.providers.ProviderManager
 
setAuthenticated(boolean) - Method in class org.acegisecurity.providers.TestingAuthenticationToken
 
setAuthenticated(boolean) - Method in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
setDetails(Object) - Method in class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 
setMessageSource(MessageSource) - Method in class org.acegisecurity.providers.ProviderManager
 
setProviders(List) - Method in class org.acegisecurity.providers.ProviderManager
Sets the AuthenticationProvider objects to be used for authentication.
setSessionController(ConcurrentSessionController) - Method in class org.acegisecurity.providers.ProviderManager
Set the ConcurrentSessionController to be used for limiting user's sessions.
supports(Class) - Method in interface org.acegisecurity.providers.AuthenticationProvider
Returns true if this AuthenticationProvider supports the indicated Authentication object.
supports(Class) - Method in class org.acegisecurity.providers.TestingAuthenticationProvider
 

T

TestingAuthenticationProvider - class org.acegisecurity.providers.TestingAuthenticationProvider.
An AuthenticationProvider implementation for the TestingAuthenticationToken.
TestingAuthenticationProvider() - Constructor for class org.acegisecurity.providers.TestingAuthenticationProvider
 
TestingAuthenticationToken - class org.acegisecurity.providers.TestingAuthenticationToken.
An org.acegisecurity.Authentication implementation that is designed for use whilst unit testing.
TestingAuthenticationToken(Object, Object, GrantedAuthority[]) - Constructor for class org.acegisecurity.providers.TestingAuthenticationToken
 
TestingAuthenticationToken() - Constructor for class org.acegisecurity.providers.TestingAuthenticationToken
 
toString() - Method in class org.acegisecurity.providers.AbstractAuthenticationToken
 

U

UsernamePasswordAuthenticationToken - class org.acegisecurity.providers.UsernamePasswordAuthenticationToken.
An org.acegisecurity.Authentication implementation that is designed for simple presentation of a username and password.
UsernamePasswordAuthenticationToken(Object, Object) - Constructor for class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
This constructor can be safely used by any code that wishes to create a UsernamePasswordAuthenticationToken, as the isAuthenticated() 55 will return false.
UsernamePasswordAuthenticationToken(Object, Object, GrantedAuthority[]) - Constructor for class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
This constructor should only be used by AuthenticationManager or AuthenticationProvider implementations that are satisfied with producing a trusted (ie isAuthenticated() 55 = true) authentication token.
UsernamePasswordAuthenticationToken() - Constructor for class org.acegisecurity.providers.UsernamePasswordAuthenticationToken
 

A C D E G I L M O P S T U