All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.springframework.security.access.annotation.SecuredAnnotationSecurityMetadataSource Maven / Gradle / Ivy

There is a newer version: 6.2.4
Show newest version
/*
 * Copyright 2004, 2005, 2006 Acegi Technology Pty Limited
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      https://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

package org.springframework.security.access.annotation;

import java.lang.annotation.Annotation;
import java.lang.reflect.Method;
import java.util.ArrayList;
import java.util.Collection;
import java.util.List;

import org.springframework.core.GenericTypeResolver;
import org.springframework.core.annotation.AnnotationUtils;
import org.springframework.security.access.ConfigAttribute;
import org.springframework.security.access.SecurityConfig;
import org.springframework.security.access.method.AbstractFallbackMethodSecurityMetadataSource;
import org.springframework.util.Assert;

/**
 * Sources method security metadata from Spring Security's {@link Secured} annotation.
 * 

* Can also be used with custom security annotations by injecting an * {@link AnnotationMetadataExtractor}. The annotation type will then be obtained from the * generic parameter type supplied to this interface * * @author Ben Alex * @author Luke Taylor */ @SuppressWarnings({ "unchecked" }) public class SecuredAnnotationSecurityMetadataSource extends AbstractFallbackMethodSecurityMetadataSource { private AnnotationMetadataExtractor annotationExtractor; private Class annotationType; public SecuredAnnotationSecurityMetadataSource() { this(new SecuredAnnotationMetadataExtractor()); } public SecuredAnnotationSecurityMetadataSource(AnnotationMetadataExtractor annotationMetadataExtractor) { Assert.notNull(annotationMetadataExtractor, "annotationMetadataExtractor cannot be null"); this.annotationExtractor = annotationMetadataExtractor; this.annotationType = (Class) GenericTypeResolver .resolveTypeArgument(this.annotationExtractor.getClass(), AnnotationMetadataExtractor.class); Assert.notNull(this.annotationType, () -> this.annotationExtractor.getClass().getName() + " must supply a generic parameter for AnnotationMetadataExtractor"); } @Override protected Collection findAttributes(Class clazz) { return processAnnotation(AnnotationUtils.findAnnotation(clazz, this.annotationType)); } @Override protected Collection findAttributes(Method method, Class targetClass) { return processAnnotation(AnnotationUtils.findAnnotation(method, this.annotationType)); } @Override public Collection getAllConfigAttributes() { return null; } private Collection processAnnotation(Annotation annotation) { return (annotation != null) ? this.annotationExtractor.extractAttributes(annotation) : null; } static class SecuredAnnotationMetadataExtractor implements AnnotationMetadataExtractor { @Override public Collection extractAttributes(Secured secured) { String[] attributeTokens = secured.value(); List attributes = new ArrayList<>(attributeTokens.length); for (String token : attributeTokens) { attributes.add(new SecurityConfig(token)); } return attributes; } } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy