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.FrontEndPseudostate; 008 009/** 010 * Encapsulates a pseudostate and provides specific Struts services. This pseudostate can be a 011 * decision point, junction or initial state. 012 * 013 * Metafacade interface to be used by AndroMDA cartridges. 014 */ 015public interface StrutsPseudostate 016 extends FrontEndPseudostate 017{ 018 /** 019 * Indicates the metafacade type (used for metafacade mappings). 020 * 021 * @return boolean always <code>true</code> 022 */ 023 public boolean isStrutsPseudostateMetaType(); 024 025 /** 026 * The method name that delegates transitions from this state. 027 * @return String 028 */ 029 public String getActionMethodName(); 030}