1 // license-header java merge-point 2 // 3 // Attention: generated code (by Metafacade.vsl) - do not modify! 4 // 5 package org.andromda.cartridges.spring.metafacades; 6 7 import org.andromda.metafacades.uml.Queue; 8 9 /** 10 * Represents a Spring accessible JMS queue. 11 * 12 * Metafacade interface to be used by AndroMDA cartridges. 13 */ 14 public interface SpringQueue 15 extends Queue 16 { 17 /** 18 * Indicates the metafacade type (used for metafacade mappings). 19 * 20 * @return boolean always <code>true</code> 21 */ 22 public boolean isSpringQueueMetaType(); 23 24 /** 25 * The bean name of this Spring Queue. 26 * @return String 27 */ 28 public String getBeanName(); 29 30 /** 31 * The JMS template bean name for this Queue. 32 * @return String 33 */ 34 public String getTemplateBeanName(); 35 36 /** 37 * The JMS template "getter" name. 38 * @return String 39 */ 40 public String getTemplateGetterName(); 41 42 /** 43 * The JMS template "setter" name. 44 * @return String 45 */ 46 public String getTemplateSetterName(); 47 }