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.ValueObject;
008
009/**
010 * Represents the EJB3 representation of the Value Object.
011 *
012 * Metafacade interface to be used by AndroMDA cartridges.
013 */
014public interface EJB3ValueObjectFacade
015    extends ValueObject
016{
017    /**
018     * Indicates the metafacade type (used for metafacade mappings).
019     *
020     * @return boolean always <code>true</code>
021     */
022    public boolean isEJB3ValueObjectFacadeMetaType();
023
024    /**
025     * Returns the Seam component name for the class.
026     * @return String
027     */
028    public String getSeamComponentName();
029
030    /**
031     * Returns the seam component scope type if one is specified.
032     * @return String
033     */
034    public String getSeamComponentScopeType();
035
036    /**
037     * Returns true if this value object has the <<Seam>> stereotype modeled indicating it is a Seam
038     * component.
039     * @return boolean
040     */
041    public boolean isSeamComponent();
042}