Package org.apache.cocoon.rest.controller.util

Examples of org.apache.cocoon.rest.controller.util.AnnotationCollector


public class AnnotationCollectorTest {

    @Test
    public void testGetAnnotatedFields() {
        AnnotationCollector annotationCollector = new AnnotationCollector();
        Map<Class<? extends Annotation>, List<Field>> annotatedFields = annotationCollector
                .getAnnotatedFields(AnnotatedClass.class);

        List<Field> requestHeaderParameterFields = annotatedFields.get(RequestHeader.class);
        List<Field> requestParameterFields = annotatedFields.get(RequestParameter.class);
View Full Code Here

TOP

Related Classes of org.apache.cocoon.rest.controller.util.AnnotationCollector

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.