01: /**
02: * EasyBeans
03: * Copyright (C) 2006 Bull S.A.S.
04: * Contact: easybeans@ow2.org
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2.1 of the License, or any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
19: * USA
20: *
21: * --------------------------------------------------------------------------
22: * $Id: JavaxAnnotationSecurityRolesAllowedVisitor.java 2059 2007-11-22 17:22:33Z benoitf $
23: * --------------------------------------------------------------------------
24: */package org.ow2.easybeans.deployment.annotations.analyzer;
25:
26: import java.util.ArrayList;
27: import java.util.List;
28:
29: import org.ow2.easybeans.deployment.annotations.metadata.interfaces.IAnnotationSecurityRolesAllowed;
30:
31: /**
32: * This class manages the handling of @{@link javax.annotation.security.DeclareRoles}
33: * annotation.
34: * @param <T> An implementation of IAnnotationSecurityRolesAllowed interface.
35: * @author Florent Benoit
36: */
37: public class JavaxAnnotationSecurityRolesAllowedVisitor<T extends IAnnotationSecurityRolesAllowed>
38: extends ObjectArrayAnnotationVisitor<T, String> implements
39: AnnotationType {
40:
41: /**
42: * Type of annotation.
43: */
44: public static final String TYPE = "Ljavax/annotation/security/RolesAllowed;";
45:
46: /**
47: * Constructor.
48: * @param annotationMetadata linked to a class/method metadata
49: */
50: public JavaxAnnotationSecurityRolesAllowedVisitor(
51: final T annotationMetadata) {
52: super (annotationMetadata);
53: }
54:
55: /**
56: * Visits the end of the annotation. <br>
57: * Creates the object and store it.
58: */
59: @Override
60: public void visitEnd() {
61: List<String> rolesAllowed = new ArrayList<String>();
62: for (String s : getArrayObjects()) {
63: rolesAllowed.add(s);
64: }
65: getAnnotationMetadata().setRolesAllowed(rolesAllowed);
66: }
67:
68: /**
69: * @return type of the annotation (its description)
70: */
71: public String getType() {
72: return TYPE;
73: }
74:
75: }
|