Interface AuthenticationChannel
-
public interface AuthenticationChannel
Wrapper 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 String
getChannelId()
String
getPathAfterLogout()
String
getPathAfterSuccessfulAuthentication()
String
getPathAfterUnsuccessfulAuthentication()
String
getPathDuringProccessing()
String
getSpecificLoginUrl()
String
getUrlSuffix()
boolean
isDefault()
boolean
isPostAuthenticationEnabled()
boolean
isSupportActivationByChannel()
boolean
matchChannel(AuthenticationSequenceType sequence)
void
postSuccessAuthenticationProcessing()
Collection<Authorization>
resolveAuthorities(Collection<Authorization> authorities)
void
setPathAfterLogout(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()
-
-