All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.wildfly.clustering.web.sso.SSO Maven / Gradle / Ivy

Go to download

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();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy