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; 26 import java.lang.annotation.ElementType; 27 import java.lang.reflect.AnnotatedElement; 28 import java.lang.reflect.Method; 29 30 import javax.ejb.Timeout; 31 32 import com.sun.enterprise.deployment.EjbDescriptor; 33 import com.sun.enterprise.deployment.MethodDescriptor; 34 35 import com.sun.enterprise.deployment.annotation.AnnotationInfo; 36 import com.sun.enterprise.deployment.annotation.AnnotationProcessorException; 37 import com.sun.enterprise.deployment.annotation.HandlerProcessingResult; 38 import com.sun.enterprise.deployment.annotation.context.EjbContext; 39 40 /** 41 * This handler is responsible for handling the javax.ejb.Timeout attribute 42 * 43 */ 44 public class TimeoutHandler extends AbstractAttributeHandler { 45 46 public TimeoutHandler() { 47 } 48 49 /** 50 * @return the annoation type this annotation handler is handling 51 */ 52 public Class<? extends Annotation> getAnnotationType() { 53 return Timeout.class; 54 } 55 56 protected HandlerProcessingResult processAnnotation(AnnotationInfo ainfo, 57 EjbContext[] ejbContexts) throws AnnotationProcessorException { 58 59 // No-op. @Timeout processing is performed during initial EJB 3.0 60 // bean processing in AbstractEjbHandler. 61 62 return getDefaultProcessedResult(); 63 } 64 65 /** 66 * @return an array of annotation types this annotation handler would 67 * require to be processed (if present) before it processes it's own 68 * annotation type. 69 */ 70 public Class<? extends Annotation>[] getTypeDependencies() { 71 return getEjbAnnotationTypes(); 72 } 73 } 74