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.ejb.metafacades;
6   
7   import org.andromda.metafacades.uml.OperationFacade;
8   
9   /**
10   * Represents an operation on an EJB.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface EJBOperationFacade
15      extends OperationFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isEJBOperationFacadeMetaType();
23  
24      /**
25       * Gets the transaction type for this attribute (i.e. REQUIRED, etc)
26       * @return String
27       */
28      public String getTransactionType();
29  
30      /**
31       * True/false on whether or not this operation is an EJB business operation.
32       * @return boolean
33       */
34      public boolean isBusinessOperation();
35  
36      /**
37       * True/false on whether or not this operation represents a select method.
38       * @return boolean
39       */
40      public boolean isSelectMethod();
41  }