2014-09-29 20:15:33 +00:00
|
|
|
package org.keycloak.protocol;
|
|
|
|
|
|
|
|
import org.keycloak.models.ClientSessionModel;
|
|
|
|
import org.keycloak.models.KeycloakSession;
|
|
|
|
import org.keycloak.models.RealmModel;
|
|
|
|
import org.keycloak.models.UserSessionModel;
|
|
|
|
import org.keycloak.provider.Provider;
|
|
|
|
import org.keycloak.services.managers.ClientSessionCode;
|
|
|
|
|
|
|
|
import javax.ws.rs.core.Response;
|
|
|
|
import javax.ws.rs.core.UriInfo;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @author <a href="mailto:bill@burkecentral.com">Bill Burke</a>
|
|
|
|
* @version $Revision: 1 $
|
|
|
|
*/
|
|
|
|
public interface LoginProtocol extends Provider {
|
2014-10-05 01:27:48 +00:00
|
|
|
LoginProtocol setSession(KeycloakSession session);
|
2014-09-29 20:15:33 +00:00
|
|
|
|
2014-10-05 01:27:48 +00:00
|
|
|
LoginProtocol setRealm(RealmModel realm);
|
2014-09-29 20:15:33 +00:00
|
|
|
|
2014-10-05 01:27:48 +00:00
|
|
|
LoginProtocol setUriInfo(UriInfo uriInfo);
|
2014-09-29 20:15:33 +00:00
|
|
|
|
|
|
|
Response cancelLogin(ClientSessionModel clientSession);
|
|
|
|
Response invalidSessionError(ClientSessionModel clientSession);
|
|
|
|
Response authenticated(UserSessionModel userSession, ClientSessionCode accessCode);
|
|
|
|
Response consentDenied(ClientSessionModel clientSession);
|
2014-10-07 22:06:02 +00:00
|
|
|
|
|
|
|
void backchannelLogout(UserSessionModel userSession, ClientSessionModel clientSession);
|
2015-01-16 23:57:33 +00:00
|
|
|
Response frontchannelLogout(UserSessionModel userSession, ClientSessionModel clientSession);
|
|
|
|
Response finishLogout(UserSessionModel userSession);
|
2014-09-29 20:15:33 +00:00
|
|
|
}
|