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

io.atlassian.util.adapter.javax.servlet.http.JavaXHttpSessionContextAdapter Maven / Gradle / Ivy

Go to download

A collection of classes for adapting Servlet API 4.0 objects to Servlet API 5.0 and vice versa.

There is a newer version: 0.1.0
Show newest version
package io.atlassian.util.adapter.javax.servlet.http;

import javax.servlet.http.HttpSession;
import javax.servlet.http.HttpSessionContext;
import java.util.Enumeration;

import static java.util.Collections.emptyEnumeration;

public class JavaXHttpSessionContextAdapter implements HttpSessionContext {

    public static final HttpSessionContext INSTANCE = new JavaXHttpSessionContextAdapter();

    private JavaXHttpSessionContextAdapter() {
    }

    @Override
    public HttpSession getSession(String sessionId) {
        return null;
    }

    @Override
    public Enumeration getIds() {
        return emptyEnumeration();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy