001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.jsf2.metafacades; 006 007import org.andromda.metafacades.uml.FrontEndControllerOperation; 008 009/** 010 * Represents an operation for a JSF controller. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface JSFControllerOperation 015 extends FrontEndControllerOperation 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isJSFControllerOperationMetaType(); 023 024 /** 025 * The operation call that takes the appropriate form as an argument. 026 * @return String 027 */ 028 public String getFormCall(); 029 030 /** 031 * The form name the corresponds to this controller operation. 032 * @return String 033 */ 034 public String getFormName(); 035 036 /** 037 * The controller operation signature that takes the appropriate form (if this operation has at 038 * least one form field) as an argument. 039 * @return String 040 */ 041 public String getFormSignature(); 042 043 /** 044 * The fully qualified form name. 045 * @return String 046 */ 047 public String getFullyQualifiedFormName(); 048 049 /** 050 * The fully qualified path of the form file. 051 * @return String 052 */ 053 public String getFullyQualifiedFormPath(); 054 055 /** 056 * The controller implementation operation signature that takes the appropriate form (if this 057 * operation has at least one form field) as an argument. 058 * @return String 059 */ 060 public String getImplementationFormSignature(); 061}