dps.webapplication.servlets.SessionOfRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dps.webapplication Show documentation
Show all versions of dps.webapplication Show documentation
Common classes for webapplications
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;
}
}