]> git.argeo.org Git - gpl/argeo-slc.git/blobdiff - legacy/argeo-commons/org.argeo.cms.ui.workbench.rap/src/org/argeo/cms/ui/workbench/rap/AnonymousEntryPoint.java
Prepare next development cacle
[gpl/argeo-slc.git] / legacy / argeo-commons / org.argeo.cms.ui.workbench.rap / src / org / argeo / cms / ui / workbench / rap / AnonymousEntryPoint.java
index 586c1ee181c1fa2edbcdf5faa3ad8ee35c3dd25b..82e86b404a612319d7cc79485e82f3e263efbe6e 100644 (file)
@@ -6,9 +6,8 @@ import javax.security.auth.Subject;
 import javax.security.auth.login.LoginContext;
 import javax.security.auth.login.LoginException;
 
-import org.apache.commons.logging.Log;
-import org.apache.commons.logging.LogFactory;
-import org.argeo.api.NodeConstants;
+import org.argeo.api.cms.CmsAuth;
+import org.argeo.api.cms.CmsLog;
 import org.argeo.cms.CmsException;
 import org.eclipse.rap.rwt.RWT;
 import org.eclipse.rap.rwt.application.EntryPoint;
@@ -20,7 +19,7 @@ import org.eclipse.ui.PlatformUI;
  * unauthenticated access.
  */
 public class AnonymousEntryPoint implements EntryPoint {
-       private final static Log log = LogFactory.getLog(AnonymousEntryPoint.class);
+       private final static CmsLog log = CmsLog.getLog(AnonymousEntryPoint.class);
 
        /**
         * How many seconds to wait before invalidating the session if the user has
@@ -41,7 +40,7 @@ public class AnonymousEntryPoint implements EntryPoint {
 
                final LoginContext loginContext;
                try {
-                       loginContext = new LoginContext(NodeConstants.LOGIN_CONTEXT_ANONYMOUS,
+                       loginContext = new LoginContext(CmsAuth.LOGIN_CONTEXT_ANONYMOUS,
                                        subject);
                        loginContext.login();
                } catch (LoginException e1) {