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

io.soluble.pjb.servlet.RemoteHttpServletRequest Maven / Gradle / Ivy

There is a newer version: 7.1.3
Show newest version
/**
 *
 */
package io.soluble.pjb.servlet;

import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletRequestWrapper;
import javax.servlet.http.HttpSession;

final class RemoteHttpServletRequest extends HttpServletRequestWrapper {

    private SimpleServletContextFactory factory;

    public RemoteHttpServletRequest(SimpleServletContextFactory factory, HttpServletRequest req) {
        super(req);
        this.factory = factory;
    }

    /*
     * Return the session obtained from the servlet.
     */
    public HttpSession getSession() {
        return factory.getSession();
    }

    /*
     * Return the old session or give up.
     */
    public HttpSession getSession(boolean clientIsNew) {
        HttpSession session = getSession();
        if (clientIsNew && !session.isNew())
            throw new IllegalStateException("To obtain a new session call java_session(null, true) at the beginning of your PHP script.");
        return session;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy