org.wildfly.clustering.web.sso.SSO Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wildfly-clustering-web-spi Show documentation
Show all versions of wildfly-clustering-web-spi Show documentation
A set of SPIs for implementing a container-independent distributable HTTP session manager and single sign-on manager for use by a servlet container.
The newest version!
/*
* Copyright The WildFly Authors
* SPDX-License-Identifier: Apache-2.0
*/
package org.wildfly.clustering.web.sso;
/**
* Represents a single sign on entry for a user.
* @author Paul Ferraro
* @param the authentication identity type
* @param the deployment identifier type
* @param the session identifier type
* @param the local context type
*/
public interface SSO {
/**
* A unique identifier for this SSO.
* @return a unique identifier
*/
String getId();
/**
* Returns the authentication for this SSO.
* @return an authentication.
*/
A getAuthentication();
/**
* Returns the session for which the user is authenticated.
* @return
*/
Sessions getSessions();
/**
* Invalidates this SSO.
*/
void invalidate();
/**
* The local context of this SSO.
* The local context is *not* replicated to other nodes in the cluster.
* @return a local context.
*/
L getLocalContext();
}