001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.spring.metafacades; 006 007import org.andromda.metafacades.uml.Topic; 008 009/** 010 * Represents a Spring accessible JMS topic. 011 * 012 * Metafacade interface to be used by AndroMDA cartridges. 013 */ 014public interface SpringTopic 015 extends Topic 016{ 017 /** 018 * Indicates the metafacade type (used for metafacade mappings). 019 * 020 * @return boolean always <code>true</code> 021 */ 022 public boolean isSpringTopicMetaType(); 023 024 /** 025 * The bean name of this Spring Topic. 026 * @return String 027 */ 028 public String getBeanName(); 029 030 /** 031 * The JMS template bean name for this Topic. 032 * @return String 033 */ 034 public String getTemplateBeanName(); 035 036 /** 037 * The JMS template "getter" name. 038 * @return String 039 */ 040 public String getTemplateGetterName(); 041 042 /** 043 * The JMS template "setterName". 044 * @return String 045 */ 046 public String getTemplateSetterName(); 047}