View Javadoc

1   package com.bm.ejb3metadata.annotations.metadata.interfaces;
2   
3   import com.bm.ejb3metadata.annotations.impl.JInterceptors;
4   
5   /**
6    * This interface represents methods which can be call on
7    * ClassAnnotationMetadata and MethodAnnotationMetadata.<br>
8    * It manages &#64;{@link javax.interceptor.Interceptors} annotation.
9    * 
10   * @author Daniel Wiese
11   */
12  public interface IEJBInterceptors {
13  
14  	/**
15  	 * Set JInterceptors object.
16  	 * 
17  	 * @param annotationInterceptors
18  	 *            object representing javax.ejb.Interceptors annotation value.
19  	 */
20  	void setAnnotationsInterceptors(final JInterceptors annotationInterceptors);
21  }