1 // license-header java merge-point
2 //
3 // Attention: generated code (by Metafacade.vsl) - do not modify!
4 //
5 package org.andromda.cartridges.ejb3.metafacades;
6
7 import org.andromda.metafacades.uml.ValueObject;
8
9 /**
10 * Represents the EJB3 representation of the Value Object.
11 *
12 * Metafacade interface to be used by AndroMDA cartridges.
13 */
14 public interface EJB3ValueObjectFacade
15 extends ValueObject
16 {
17 /**
18 * Indicates the metafacade type (used for metafacade mappings).
19 *
20 * @return boolean always <code>true</code>
21 */
22 public boolean isEJB3ValueObjectFacadeMetaType();
23
24 /**
25 * Returns the Seam component name for the class.
26 * @return String
27 */
28 public String getSeamComponentName();
29
30 /**
31 * Returns the seam component scope type if one is specified.
32 * @return String
33 */
34 public String getSeamComponentScopeType();
35
36 /**
37 * Returns true if this value object has the <<Seam>> stereotype modeled indicating it is a Seam
38 * component.
39 * @return boolean
40 */
41 public boolean isSeamComponent();
42 }