X-Git-Url: https://git.argeo.org/?a=blobdiff_plain;f=org.argeo.cms%2Fsrc%2Forg%2Fargeo%2Fcms%2Finternal%2Fhttp%2FWebCmsSessionImpl.java;h=20f4c032e6ab5cab6ac55ea978df809546aaf2e1;hb=3df0adaee4a48c10452fb2064fb8e608b9c985d1;hp=1df7b1760cfb4471ca013ca3b564ec3b87929379;hpb=8633b7d69ebb6e1c5af0b1e170d7b4f2af3567d3;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.cms/src/org/argeo/cms/internal/http/WebCmsSessionImpl.java b/org.argeo.cms/src/org/argeo/cms/internal/http/WebCmsSessionImpl.java index 1df7b1760..20f4c032e 100644 --- a/org.argeo.cms/src/org/argeo/cms/internal/http/WebCmsSessionImpl.java +++ b/org.argeo.cms/src/org/argeo/cms/internal/http/WebCmsSessionImpl.java @@ -9,14 +9,16 @@ import javax.servlet.http.HttpSession; import org.argeo.cms.internal.auth.CmsSessionImpl; import org.osgi.service.useradmin.Authorization; +/** CMS session implementation in a web context. */ public class WebCmsSessionImpl extends CmsSessionImpl { // private final static Log log = // LogFactory.getLog(WebCmsSessionImpl.class); private HttpSession httpSession; - public WebCmsSessionImpl(Subject initialSubject, Authorization authorization, Locale locale, HttpServletRequest request) { - super(initialSubject, authorization, locale,request.getSession(false).getId()); + public WebCmsSessionImpl(Subject initialSubject, Authorization authorization, Locale locale, + HttpServletRequest request) { + super(initialSubject, authorization, locale, request.getSession(false).getId()); httpSession = request.getSession(false); }