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