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=623a0db2d0f161c101b9e41abcaccc04d478d32a;hp=1df7b1760cfb4471ca013ca3b564ec3b87929379;hpb=088c1b517a543e935d8ab65c3b2fd2d0269b551d;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); }