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 org.andromda.metafacades.uml.ServiceOperation;
8   
9   /**
10   * TODO: Model Documentation for
11   * org.andromda.cartridges.ejb3.metafacades.EJB3MessageDrivenOperationFacade
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface EJB3MessageDrivenOperationFacade
16      extends ServiceOperation
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isEJB3MessageDrivenOperationFacadeMetaType();
24  
25      /**
26       * Returns true if the associated operation has the <<PostConstruct>> stereotype.
27       * NOTE: The method signature must return void and have no args.
28       * @return boolean
29       */
30      public boolean isPostConstruct();
31  
32      /**
33       * Returns true if the associated operation has the <<PreDestroy>> stereotype.
34       * NOTE: The method signature must return void and have no args.
35       * @return boolean
36       */
37      public boolean isPreDestroy();
38  }