]> git.argeo.org Git - lgpl/argeo-commons.git/blobdiff - org.argeo.util/src/org/argeo/osgi/useradmin/UserAdminConf.java
Introduce system roles
[lgpl/argeo-commons.git] / org.argeo.util / src / org / argeo / osgi / useradmin / UserAdminConf.java
index 8941f98b4f92763a67f297fa56b4d30d7ae36488..93ca94ca6deddead625a43acb0cfcbeee3813ba7 100644 (file)
@@ -34,6 +34,9 @@ public enum UserAdminConf {
        /** Relative base DN for users */
        groupBase("ou=Groups"),
 
+       /** Relative base DN for users */
+       systemRoleBase("ou=Roles"),
+
        /** Read-only source */
        readOnly(null),
 
@@ -41,7 +44,10 @@ public enum UserAdminConf {
        disabled(null),
 
        /** Authentication realm */
-       realm(null);
+       realm(null),
+
+       /** Override all passwords with this value (typically for testing purposes) */
+       forcedPassword(null);
 
        public final static String FACTORY_PID = "org.argeo.osgi.useradmin.config";