io.undertow.servlet.api.SessionConfigWrapper Maven / Gradle / Ivy
package io.undertow.servlet.api;
import io.undertow.server.session.SessionConfig;
/**
* A class that allows the SessionConfig to be wrapped.
*
* This is generally used to append JVM route information to the session ID in clustered environments.
*
* @author Stuart Douglas
*/
public interface SessionConfigWrapper {
SessionConfig wrap(final SessionConfig sessionConfig, final Deployment deployment);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy