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.Topic;
8
9 /**
10 * Represents a Spring accessible JMS topic.
11 *
12 * Metafacade interface to be used by AndroMDA cartridges.
13 */
14 public interface SpringTopic
15 extends Topic
16 {
17 /**
18 * Indicates the metafacade type (used for metafacade mappings).
19 *
20 * @return boolean always <code>true</code>
21 */
22 public boolean isSpringTopicMetaType();
23
24 /**
25 * The bean name of this Spring Topic.
26 * @return String
27 */
28 public String getBeanName();
29
30 /**
31 * The JMS template bean name for this Topic.
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 "setterName".
44 * @return String
45 */
46 public String getTemplateSetterName();
47 }