1
2
3
4 package org.andromda.cartridges.spring.metafacades;
5
6 /***
7 *
8 *
9 * Metafacade interface to be used by AndroMDA cartridges.
10 */
11 public interface SpringEntityOperation
12 extends org.andromda.metafacades.uml.OperationFacade
13 {
14
15 /***
16 * Indicates the metafacade type (used for metafacade mappings).
17 *
18 * @return always <code>true</code>
19 */
20 public boolean isSpringEntityOperationMetaType();
21
22 /***
23 * <p>
24 * The method call for the implementation operation.
25 * </p>
26 */
27 public java.lang.String getImplementationCall();
28
29 /***
30 * <p>
31 * The name of the operation used within the entity implementation.
32 * </p>
33 */
34 public java.lang.String getImplementationName();
35
36 /***
37 * <p>
38 * The signature for the implementation operation.
39 * </p>
40 */
41 public java.lang.String getImplementationSignature();
42
43 }