FileDocCategorySizeDatePackage
TimeoutHandler.javaAPI DocGlassfish v2 API3612Fri May 04 22:31:34 BST 2007com.sun.enterprise.deployment.annotation.handlers

TimeoutHandler

public class TimeoutHandler extends AbstractAttributeHandler
This handler is responsible for handling the javax.ejb.Timeout attribute

Fields Summary
Constructors Summary
public TimeoutHandler()

    
Methods Summary
public java.lang.ClassgetAnnotationType()

return
the annoation type this annotation handler is handling

        return Timeout.class;
    
public java.lang.Class[]getTypeDependencies()

return
an array of annotation types this annotation handler would require to be processed (if present) before it processes it's own annotation type.

        return getEjbAnnotationTypes();
    
protected com.sun.enterprise.deployment.annotation.HandlerProcessingResultprocessAnnotation(com.sun.enterprise.deployment.annotation.AnnotationInfo ainfo, com.sun.enterprise.deployment.annotation.context.EjbContext[] ejbContexts)


        // No-op.  @Timeout processing is performed during initial EJB 3.0
        // bean processing in AbstractEjbHandler.
        
        return getDefaultProcessedResult();