1 // license-header java merge-point
2 //
3 // Attention: generated code (by Metafacade.vsl) - do not modify!
4 //
5 package org.andromda.metafacades.uml;
6
7 import java.util.List;
8
9 /**
10 * A front end controller is assigned as the context of a use-case. The controller provides the
11 * "controlling" of the use case's activity.
12 *
13 * Metafacade interface to be used by AndroMDA cartridges.
14 */
15 public interface FrontEndController
16 extends ClassifierFacade
17 {
18 /**
19 * Indicates the metafacade type (used for metafacade mappings).
20 *
21 * @return boolean always <code>true</code>
22 */
23 public boolean isFrontEndControllerMetaType();
24
25 /**
26 * All actions that defer to at least one operation of this controller.
27 * @return List<FrontEndAction>
28 */
29 public List<FrontEndAction> getDeferringActions();
30
31 /**
32 * Returns all back-end services referenced by this controller.
33 * @return List<DependencyFacade>
34 */
35 public List<DependencyFacade> getServiceReferences();
36
37 /**
38 * Returns the use-case "controlled" by this controller.
39 * @return FrontEndUseCase
40 */
41 public FrontEndUseCase getUseCase();
42 }