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.EntityQueryOperation;
8
9 /**
10 * Represents an EJB finder method.
11 *
12 * Metafacade interface to be used by AndroMDA cartridges.
13 */
14 public interface EJBFinderMethodFacade
15 extends EntityQueryOperation
16 {
17 /**
18 * Indicates the metafacade type (used for metafacade mappings).
19 *
20 * @return boolean always <code>true</code>
21 */
22 public boolean isEJBFinderMethodFacadeMetaType();
23
24 /**
25 * The query string for this EJB entity finder.
26 * @return String
27 */
28 public String getQuery();
29
30 /**
31 * Gets the transaction type for this finder (i.e. REQUIRED, etc)
32 * @return String
33 */
34 public String getTransactionType();
35 }