KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > enterprise > deployment > annotation > handlers > ExcludeDefaultInterceptorsHandler


1 /*
2  * The contents of this file are subject to the terms
3  * of the Common Development and Distribution License
4  * (the License). You may not use this file except in
5  * compliance with the License.
6  *
7  * You can obtain a copy of the license at
8  * https://glassfish.dev.java.net/public/CDDLv1.0.html or
9  * glassfish/bootstrap/legal/CDDLv1.0.txt.
10  * See the License for the specific language governing
11  * permissions and limitations under the License.
12  *
13  * When distributing Covered Code, include this CDDL
14  * Header Notice in each file and include the License file
15  * at glassfish/bootstrap/legal/CDDLv1.0.txt.
16  * If applicable, add the following below the CDDL Header,
17  * with the fields enclosed by brackets [] replaced by
18  * you own identifying information:
19  * "Portions Copyrighted [year] [name of copyright owner]"
20  *
21  * Copyright 2006 Sun Microsystems, Inc. All rights reserved.
22  */

23 package com.sun.enterprise.deployment.annotation.handlers;
24
25 import java.lang.annotation.Annotation JavaDoc;
26 import java.lang.annotation.ElementType JavaDoc;
27 import java.lang.reflect.AnnotatedElement JavaDoc;
28 import java.lang.reflect.Method JavaDoc;
29
30 import javax.interceptor.ExcludeDefaultInterceptors;
31
32 import com.sun.enterprise.deployment.EjbDescriptor;
33 import com.sun.enterprise.deployment.EjbBundleDescriptor;
34 import com.sun.enterprise.deployment.InterceptorBindingDescriptor;
35 import com.sun.enterprise.deployment.MethodDescriptor;
36
37 import com.sun.enterprise.deployment.annotation.AnnotationInfo;
38 import com.sun.enterprise.deployment.annotation.AnnotationProcessorException;
39 import com.sun.enterprise.deployment.annotation.HandlerProcessingResult;
40 import com.sun.enterprise.deployment.annotation.context.EjbContext;
41
42 /**
43  * This handler is responsible for handling the
44  * javax.ejb.ExcludeDefaultInterceptors annotation.
45  *
46  */

47 public class ExcludeDefaultInterceptorsHandler
48     extends AbstractAttributeHandler {
49     
50     public ExcludeDefaultInterceptorsHandler() {
51     }
52     
53     /**
54      * @return the annoation type this annotation handler is handling
55      */

56     public Class JavaDoc<? extends Annotation JavaDoc> getAnnotationType() {
57         return ExcludeDefaultInterceptors.class;
58     }
59         
60     protected HandlerProcessingResult processAnnotation(AnnotationInfo ainfo,
61             EjbContext[] ejbContexts) throws AnnotationProcessorException {
62
63          EjbBundleDescriptor ejbBundle =
64              ((EjbDescriptor)ejbContexts[0].getDescriptor()).
65                  getEjbBundleDescriptor();
66         
67          for(EjbContext next : ejbContexts) {
68
69             EjbDescriptor ejbDescriptor = (EjbDescriptor) next.getDescriptor();
70
71             // Create binding information.
72
InterceptorBindingDescriptor binding =
73                 new InterceptorBindingDescriptor();
74
75             binding.setEjbName(ejbDescriptor.getName());
76
77             binding.setExcludeDefaultInterceptors(true);
78             
79             if(ElementType.METHOD.equals(ainfo.getElementType())) {
80                 Method JavaDoc m = (Method JavaDoc) ainfo.getAnnotatedElement();
81                 MethodDescriptor md =
82                     new MethodDescriptor(m, MethodDescriptor.EJB_BEAN);
83                 binding.setBusinessMethod(md);
84             }
85
86             ejbBundle.prependInterceptorBinding(binding);
87         }
88
89         return getDefaultProcessedResult();
90     }
91
92     /**
93      * @return an array of annotation types this annotation handler would
94      * require to be processed (if present) before it processes it's own
95      * annotation type.
96      */

97     public Class JavaDoc<? extends Annotation JavaDoc>[] getTypeDependencies() {
98         return getEjbAnnotationTypes();
99     }
100 }
101
Popular Tags