001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.ejb3.metafacades; 006 007import org.andromda.metafacades.uml.ServiceOperation; 008 009/** 010 * TODO: Model Documentation for 011 * org.andromda.cartridges.ejb3.metafacades.EJB3MessageDrivenOperationFacade 012 * 013 * Metafacade interface to be used by AndroMDA cartridges. 014 */ 015public interface EJB3MessageDrivenOperationFacade 016 extends ServiceOperation 017{ 018 /** 019 * Indicates the metafacade type (used for metafacade mappings). 020 * 021 * @return boolean always <code>true</code> 022 */ 023 public boolean isEJB3MessageDrivenOperationFacadeMetaType(); 024 025 /** 026 * Returns true if the associated operation has the <<PostConstruct>> stereotype. 027 * NOTE: The method signature must return void and have no args. 028 * @return boolean 029 */ 030 public boolean isPostConstruct(); 031 032 /** 033 * Returns true if the associated operation has the <<PreDestroy>> stereotype. 034 * NOTE: The method signature must return void and have no args. 035 * @return boolean 036 */ 037 public boolean isPreDestroy(); 038}