001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.bpm4struts.metafacades; 006 007import org.andromda.metafacades.uml.FinalStateFacade; 008import org.andromda.metafacades.uml.FrontEndFinalState; 009 010/** 011 * A final state represents the end of a use-case. In a Struts application this means a transition 012 * into the next use-case. 013 * 014 * Metafacade interface to be used by AndroMDA cartridges. 015 */ 016public interface StrutsFinalState 017 extends FinalStateFacade, FrontEndFinalState 018{ 019 /** 020 * Indicates the metafacade type (used for metafacade mappings). 021 * 022 * @return boolean always <code>true</code> 023 */ 024 public boolean isStrutsFinalStateMetaType(); 025 026 /** 027 * A final state maps onto a use-case. The full path to this use-case is returned here. In case 028 * no name for this final state was specified the use-case with the application's first use-case 029 * path will be returned. 030 * @return String 031 */ 032 public String getFullPath(); 033}