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

dps.webapplication.servlets.SessionOfRequest Maven / Gradle / Ivy

There is a newer version: 1.2.5
Show newest version
package dps.webapplication.servlets;

import javax.enterprise.context.RequestScoped;
import javax.servlet.http.HttpSession;

@RequestScoped
public class SessionOfRequest {
    HttpSession session;

    public HttpSession getSession() {
        return session;
    }

    public void setSession(HttpSession session) {
        this.session = session;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy