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.EntityQueryOperation;
008
009/**
010 * Represents an EJB finder method.
011 *
012 * Metafacade interface to be used by AndroMDA cartridges.
013 */
014public interface EJBFinderMethodFacade
015    extends EntityQueryOperation
016{
017    /**
018     * Indicates the metafacade type (used for metafacade mappings).
019     *
020     * @return boolean always <code>true</code>
021     */
022    public boolean isEJBFinderMethodFacadeMetaType();
023
024    /**
025     * The query string for this EJB entity finder.
026     * @return String
027     */
028    public String getQuery();
029
030    /**
031     * Gets the transaction type for this finder (i.e. REQUIRED, etc)
032     * @return String
033     */
034    public String getTransactionType();
035}