Introduce ROLE_USER_ADMIN and ROLE_GROUP_ADMIN
[lgpl/argeo-commons.git] / org.argeo.security.core / src / org / argeo / security / SystemAuthentication.java
index 2722c1f7d1339249de3622db96e84aa89ac4bdb3..d489761e5ed210f32189906240eba6c7f07ecf25 100644 (file)
@@ -19,5 +19,8 @@ package org.argeo.security;
  * Marks a system authentication, that is which did not require a login process.
  */
 public interface SystemAuthentication {
-
+       /** 'admin' for consistency with JCR */
+       public final static String USERNAME_SYSTEM = "admin";
+       public final static String ROLE_SYSTEM = "ROLE_SYSTEM";
+       public final static String SYSTEM_KEY_PROPERTY = "argeo.security.systemKey";
 }