]> git.argeo.org Git - lgpl/argeo-commons.git/blob - InternalAuthentication.java
f20f6805bdb5c4a6042ce3a4a631f330365e18bc
[lgpl/argeo-commons.git] / InternalAuthentication.java
1 /*
2 * Copyright (C) 2010 Mathieu Baudier <mbaudier@argeo.org>
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
17 package org.argeo.security.core;
18
19 import org.argeo.security.SystemAuthentication;
20 import org.springframework.security.GrantedAuthority;
21 import org.springframework.security.GrantedAuthorityImpl;
22 import org.springframework.security.adapters.PrincipalSpringSecurityUserToken;
23
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
30 public InternalAuthentication(String key, String systemUsername,
31 String systemRole) {
32 super(
33 key,
34 systemUsername,
35 key,
36 new GrantedAuthority[] { new GrantedAuthorityImpl(systemRole) },
37 systemUsername);
38 }
39
40 public InternalAuthentication(String key) {
41 this(key, DEFAULT_SYSTEM_USERNAME, DEFAULT_SYSTEM_ROLE);
42 }
43
44 }