|
Spring LDAP Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.springframework.ldap.authentication.DefaultValuesAuthenticationSourceDecorator
public class DefaultValuesAuthenticationSourceDecorator
Decorator on AuthenticationSource to have default authentication information
be returned should the target return empty principal and credentials. Useful
in combination with AcegiAuthenticationSource
if users are to be
allowed to read some information even though they are not logged in.
Note: The defaultUser
should be an non-privileged
user. This is important as this is the one that will be used when no user is
logged in (i.e. empty principal is returned from the target
AuthenticationSource).
Constructor Summary | |
---|---|
DefaultValuesAuthenticationSourceDecorator()
Constructor for bean usage. |
|
DefaultValuesAuthenticationSourceDecorator(AuthenticationSource target,
String defaultUser,
String defaultPassword)
Constructor to setup instance directly. |
Method Summary | |
---|---|
void |
afterPropertiesSet()
|
String |
getCredentials()
Checks if the target's principal is not empty; if not, the credentials from the target is returned - otherwise return the defaultPassword . |
String |
getPrincipal()
Checks if the target's principal is not empty; if not, this is returned - otherwise return the defaultPassword . |
void |
setDefaultPassword(String defaultPassword)
Set the password of the default user. |
void |
setDefaultUser(String defaultUser)
Set the default user DN. |
void |
setTarget(AuthenticationSource target)
Set the target AuthenticationSource. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public DefaultValuesAuthenticationSourceDecorator()
public DefaultValuesAuthenticationSourceDecorator(AuthenticationSource target, String defaultUser, String defaultPassword)
target
- the target AuthenticationSource.defaultUser
- dn of the user to use when the target returns an empty
principal.defaultPassword
- password of the user to use when the target returns an empty
principal.Method Detail |
---|
public String getCredentials()
defaultPassword
.
getCredentials
in interface AuthenticationSource
defaultPassword
otherwise.public String getPrincipal()
defaultPassword
.
getPrincipal
in interface AuthenticationSource
defaultPassword
otherwise.public void setDefaultPassword(String defaultPassword)
defaultPassword
- the password of the default user.public void setDefaultUser(String defaultUser)
defaultUser
- DN of the default user.public void setTarget(AuthenticationSource target)
target
- the target AuthenticationSource.public void afterPropertiesSet() throws Exception
afterPropertiesSet
in interface InitializingBean
Exception
|
Spring LDAP Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |