Interface AuthenticationChannel
-
public interface AuthenticationChannelWrapper for define channel of authentication, channel define scope of authentication etc. rest, gui, reset password ...- Author:
- skublik
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetChannelId()StringgetPathAfterLogout()StringgetPathAfterSuccessfulAuthentication()StringgetPathAfterUnsuccessfulAuthentication()StringgetPathDuringProccessing()StringgetSpecificLoginUrl()StringgetUrlSuffix()booleanisDefault()booleanisPostAuthenticationEnabled()booleanisSupportActivationByChannel()booleanmatchChannel(AuthenticationSequenceType sequence)voidpostSuccessAuthenticationProcessing()Collection<Authorization>resolveAuthorities(Collection<Authorization> authorities)voidsetPathAfterLogout(String pathAfterLogout)
-
-
-
Method Detail
-
setPathAfterLogout
void setPathAfterLogout(String pathAfterLogout)
-
getPathAfterLogout
String getPathAfterLogout()
-
matchChannel
boolean matchChannel(AuthenticationSequenceType sequence)
-
getChannelId
String getChannelId()
-
getPathAfterSuccessfulAuthentication
String getPathAfterSuccessfulAuthentication()
-
getPathAfterUnsuccessfulAuthentication
String getPathAfterUnsuccessfulAuthentication()
-
getPathDuringProccessing
String getPathDuringProccessing()
-
isDefault
boolean isDefault()
-
resolveAuthorities
Collection<Authorization> resolveAuthorities(Collection<Authorization> authorities)
-
postSuccessAuthenticationProcessing
void postSuccessAuthenticationProcessing()
-
getSpecificLoginUrl
String getSpecificLoginUrl()
-
isSupportActivationByChannel
boolean isSupportActivationByChannel()
-
getUrlSuffix
String getUrlSuffix()
-
isPostAuthenticationEnabled
boolean isPostAuthenticationEnabled()
-
-