X-Git-Url: http://git.argeo.org/?a=blobdiff_plain;f=org.argeo.security.core%2Fsrc%2Forg%2Fargeo%2Fsecurity%2FSystemAuthentication.java;h=d489761e5ed210f32189906240eba6c7f07ecf25;hb=062d7f43d0208823ac81160c517ab6a2d7404765;hp=2722c1f7d1339249de3622db96e84aa89ac4bdb3;hpb=10ed6557c631d5feee8541badd0c9f16a9e791c6;p=lgpl%2Fargeo-commons.git diff --git a/org.argeo.security.core/src/org/argeo/security/SystemAuthentication.java b/org.argeo.security.core/src/org/argeo/security/SystemAuthentication.java index 2722c1f7d..d489761e5 100644 --- a/org.argeo.security.core/src/org/argeo/security/SystemAuthentication.java +++ b/org.argeo.security.core/src/org/argeo/security/SystemAuthentication.java @@ -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"; }