View Javadoc
1   // license-header java merge-point
2   //
3   // Attention: generated code (by Metafacade.vsl) - do not modify!
4   //
5   package org.andromda.cartridges.ejb3.metafacades;
6   
7   import java.util.Collection;
8   import org.andromda.metafacades.uml.Service;
9   
10  /**
11   * TODO: Model Documentation for org.andromda.cartridges.ejb3.metafacades.EJB3InterceptorFacade
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface EJB3InterceptorFacade
16      extends Service
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isEJB3InterceptorFacadeMetaType();
24  
25      /**
26       * Returns the fully qualified interceptor class name.
27       * @return String
28       */
29      public String getFullyQualifiedInterceptorName();
30  
31      /**
32       * Returns the interceptor class name.
33       * @return String
34       */
35      public String getInterceptorName();
36  
37      /**
38       * Returns the Collection of target elements from this interceptor class where  the target class
39       * has a stereotype of Interceptor.
40       * @return Collection
41       */
42      public Collection getInterceptorReferences();
43  
44      /**
45       * Returns true if this interceptor is a default interceptor.
46       * @return boolean
47       */
48      public boolean isDefaultInterceptor();
49  }