1
2
3
4 package org.andromda.cartridges.bpm4struts.metafacades;
5
6 /***
7 *
8 *
9 * Metafacade interface to be used by AndroMDA cartridges.
10 */
11 public interface StrutsBackendService
12 extends org.andromda.metafacades.uml.Service
13 {
14
15 /***
16 * Indicates the metafacade type (used for metafacade mappings).
17 *
18 * @return always <code>true</code>
19 */
20 public boolean isStrutsBackendServiceMetaType();
21
22 /***
23 * <p>
24 * The implementation to use in a controller template in order to
25 * get an instance of this service.
26 * </p>
27 */
28 public java.lang.String getAccessorImplementation();
29
30 }