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

org.wildfly.clustering.web.undertow.session.UndertowSessionManager Maven / Gradle / Ivy

Go to download

This module adapts an implementation of wildfly-clustering-web-spi to the Undertow servlet container.

There is a newer version: 34.0.0.Final
Show newest version
/*
 * Copyright The WildFly Authors
 * SPDX-License-Identifier: Apache-2.0
 */
package org.wildfly.clustering.web.undertow.session;

import java.util.Map;

import org.wildfly.clustering.session.SessionManager;

import io.undertow.server.session.SessionListeners;

/**
 * Exposes additional session manager aspects to a session.
 * @author Paul Ferraro
 */
public interface UndertowSessionManager extends io.undertow.server.session.SessionManager {
    /**
     * Returns the configured session listeners for this web application
     * @return the session listeners
     */
    SessionListeners getSessionListeners();

    /**
     * Returns underlying distributable session manager implementation.
     * @return a session manager
     */
    SessionManager> getSessionManager();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy