Rename packages in order to make future stable documentation clearer.
[lgpl/argeo-commons.git] / org.argeo.cms / src / org / argeo / cms / internal / kernel / jaas.cfg
index 0155fc5eee9eae292a04d372041ec173d0af1099..9a59613e9d944610c829943d2408cc6562666172 100644 (file)
@@ -1,18 +1,30 @@
 USER {
-    org.argeo.security.login.EndUserLoginModule requisite;
-    org.springframework.security.authentication.jaas.SecurityContextLoginModule required;
+    org.argeo.cms.auth.HttpSessionLoginModule sufficient;
+    org.argeo.cms.auth.IdentLoginModule optional;
+    org.argeo.cms.auth.UserAdminLoginModule sufficient;
 };
 
 ANONYMOUS {
-    org.argeo.security.login.AnonymousLoginModule requisite;
-    org.springframework.security.authentication.jaas.SecurityContextLoginModule required;
+    org.argeo.cms.auth.HttpSessionLoginModule sufficient;
+    org.argeo.cms.auth.AnonymousLoginModule sufficient;
 };
 
-SYSTEM {
-    org.argeo.security.login.SystemLoginModule requisite;
-    org.springframework.security.authentication.jaas.SecurityContextLoginModule required;
+DATA_ADMIN {
+    org.argeo.api.DataAdminLoginModule requisite;
+};
+
+NODE {
+    org.argeo.api.DataAdminLoginModule requisite;
 };
 
 KEYRING {
-    org.argeo.security.crypto.KeyringLoginModule required;
+    org.argeo.cms.auth.KeyringLoginModule required;
+};
+
+SINGLE_USER {
+    org.argeo.cms.auth.SingleUserLoginModule requisite;
+};
+
+Jackrabbit {
+   org.argeo.security.jackrabbit.SystemJackrabbitLoginModule requisite;
 };