Package org.keycloak.sessions
Interface CommonClientSessionModel
-
- All Known Subinterfaces:
AuthenticatedClientSessionModel,AuthenticationSessionModel
- All Known Implementing Classes:
AbstractAuthenticatedClientSessionModel,AuthenticatedClientSessionAdapter,AuthenticationSessionAdapter,MapAuthenticatedClientSessionAdapter,MapAuthenticationSessionAdapter,PersistentAuthenticatedClientSessionAdapter
public interface CommonClientSessionModelPredecesor of AuthenticationSessionModel, ClientLoginSessionModel and ClientSessionModel (then action tickets). Maybe we will remove it later...- Author:
- Marek Posolda
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classCommonClientSessionModel.Actionstatic classCommonClientSessionModel.ExecutionStatus
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetAction()ClientModelgetClient()StringgetProtocol()RealmModelgetRealm()StringgetRedirectUri()voidsetAction(String action)voidsetProtocol(String method)voidsetRedirectUri(String uri)
-
-
-
Method Detail
-
getRedirectUri
String getRedirectUri()
-
setRedirectUri
void setRedirectUri(String uri)
-
getRealm
RealmModel getRealm()
-
getClient
ClientModel getClient()
-
getAction
String getAction()
-
setAction
void setAction(String action)
-
getProtocol
String getProtocol()
-
setProtocol
void setProtocol(String method)
-
-