001// license-header java merge-point
002//
003// Attention: generated code (by Metafacade.vsl) - do not modify!
004//
005package org.andromda.cartridges.ejb.metafacades;
006
007import org.andromda.metafacades.uml.EntityAssociationEnd;
008
009/**
010 * Represents an EJB association end.
011 *
012 * Metafacade interface to be used by AndroMDA cartridges.
013 */
014public interface EJBAssociationEndFacade
015    extends EntityAssociationEnd
016{
017    /**
018     * Indicates the metafacade type (used for metafacade mappings).
019     *
020     * @return boolean always <code>true</code>
021     */
022    public boolean isEJBAssociationEndFacadeMetaType();
023
024    /**
025     * The target type for a relation. If the relation target has a multiplicity of 0..1 or 1, this
026     * is the fully qualified type name of  the target. If it has a multiplicity of >1, this is the
027     * string 'java.util.Collection'
028     * @return String
029     */
030    public String getRelationType();
031}