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.ParameterFacade;
008
009/**
010 * TODO: Model Documentation for
011 * org.andromda.cartridges.ejb3.metafacades.EJB3SessionOperationParameterFacade
012 *
013 * Metafacade interface to be used by AndroMDA cartridges.
014 */
015public interface EJB3SessionOperationParameterFacade
016    extends ParameterFacade
017{
018    /**
019     * Indicates the metafacade type (used for metafacade mappings).
020     *
021     * @return boolean always <code>true</code>
022     */
023    public boolean isEJB3SessionOperationParameterFacadeMetaType();
024
025    /**
026     * Specifies that a parameter of the asynchronous call is the duration before the call is
027     * processed (or first processed for recurring calls).
028     * @return boolean
029     */
030    public boolean isSeamAsynchronousDuration();
031
032    /**
033     * Specifies that a parameter of the asynchronous call is the datetime at which the call is
034     * processed (or first processed for recurring calls).
035     * @return boolean
036     */
037    public boolean isSeamAsynchronousExpiration();
038
039    /**
040     * Specifies that an asynchronous method call recurs, and that the annotationed parameter is
041     * duration between recurrences.
042     * @return boolean
043     */
044    public boolean isSeamAsynchronousIntervalDuration();
045}