]> git.argeo.org Git - lgpl/argeo-commons.git/blob - security/runtime/org.argeo.security.activemq/src/main/java/org/argeo/security/activemq/ActiveMqSpringSecurityContext.java
[maven-release-plugin] prepare for next development iteration
[lgpl/argeo-commons.git] / security / runtime / org.argeo.security.activemq / src / main / java / org / argeo / security / activemq / ActiveMqSpringSecurityContext.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.activemq;
17
18 import java.util.Arrays;
19 import java.util.HashSet;
20 import java.util.Set;
21
22 import org.springframework.security.GrantedAuthority;
23 import org.springframework.security.context.SecurityContext;
24
25 public class ActiveMqSpringSecurityContext extends
26 org.apache.activemq.security.SecurityContext {
27
28 private final SecurityContext springSecurityContext;
29
30 public ActiveMqSpringSecurityContext(SecurityContext springSecurityContext) {
31 super(springSecurityContext.getAuthentication().getName());
32 this.springSecurityContext = springSecurityContext;
33 }
34
35 @Override
36 public Set<?> getPrincipals() {
37 return new HashSet<GrantedAuthority>(Arrays
38 .asList(springSecurityContext.getAuthentication()
39 .getAuthorities()));
40 }
41
42 public SecurityContext getSpringSecurityContext() {
43 return springSecurityContext;
44 }
45
46 }