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.jsf2.metafacades;
6   
7   import org.andromda.metafacades.uml.FrontEndControllerOperation;
8   
9   /**
10   * Represents an operation for a JSF controller.
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface JSFControllerOperation
15      extends FrontEndControllerOperation
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isJSFControllerOperationMetaType();
23  
24      /**
25       * The operation call that takes the appropriate form as an argument.
26       * @return String
27       */
28      public String getFormCall();
29  
30      /**
31       * The form name the corresponds to this controller operation.
32       * @return String
33       */
34      public String getFormName();
35  
36      /**
37       * The controller operation signature that takes the appropriate form (if this operation has at
38       * least one form field) as an argument.
39       * @return String
40       */
41      public String getFormSignature();
42  
43      /**
44       * The fully qualified form name.
45       * @return String
46       */
47      public String getFullyQualifiedFormName();
48  
49      /**
50       * The fully qualified path of the form file.
51       * @return String
52       */
53      public String getFullyQualifiedFormPath();
54  
55      /**
56       * The controller implementation operation signature that takes the appropriate form (if this
57       * operation has at least one form field) as an argument.
58       * @return String
59       */
60      public String getImplementationFormSignature();
61  }