]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.core/src/main/java/org/argeo/security/core/InternalAuthentication.java
Refactor JCR utils and home usage
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.core / src / main / java / org / argeo / security / core / InternalAuthentication.java
1 /*
2 * Copyright (C) 2007-2012 Mathieu Baudier
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16 package org.argeo.security.core;
17
18 import org.argeo.security.SystemAuthentication;
19 import org.springframework.security.GrantedAuthority;
20 import org.springframework.security.GrantedAuthorityImpl;
21 import org.springframework.security.adapters.PrincipalSpringSecurityUserToken;
22
23 /** A token base on a system key used to request a system authentication. */
24 public class InternalAuthentication extends PrincipalSpringSecurityUserToken
25 implements SystemAuthentication {
26 private static final long serialVersionUID = -6783376375615949315L;
27 public final static String DEFAULT_SYSTEM_USERNAME = "system";
28 public final static String DEFAULT_SYSTEM_ROLE = "ROLE_SYSTEM";
29 public final static String SYSTEM_KEY_PROPERTY = "argeo.security.systemKey";
30 public final static String SYSTEM_KEY_DEFAULT = "argeo";
31
32 public InternalAuthentication(String key, String systemUsername,
33 String systemRole) {
34 super(
35 key,
36 systemUsername,
37 key,
38 new GrantedAuthority[] { new GrantedAuthorityImpl(systemRole) },
39 systemUsername);
40 }
41
42 public InternalAuthentication(String key) {
43 this(key, DEFAULT_SYSTEM_USERNAME, DEFAULT_SYSTEM_ROLE);
44 }
45
46 }