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.OperationFacade;
008
009/**
010 * Represents an operation on an EJB.
011 *
012 * Metafacade interface to be used by AndroMDA cartridges.
013 */
014public interface EJBOperationFacade
015    extends OperationFacade
016{
017    /**
018     * Indicates the metafacade type (used for metafacade mappings).
019     *
020     * @return boolean always <code>true</code>
021     */
022    public boolean isEJBOperationFacadeMetaType();
023
024    /**
025     * Gets the transaction type for this attribute (i.e. REQUIRED, etc)
026     * @return String
027     */
028    public String getTransactionType();
029
030    /**
031     * True/false on whether or not this operation is an EJB business operation.
032     * @return boolean
033     */
034    public boolean isBusinessOperation();
035
036    /**
037     * True/false on whether or not this operation represents a select method.
038     * @return boolean
039     */
040    public boolean isSelectMethod();
041}