1 // license-header java merge-point
2 //
3 // Attention: generated code (by Metafacade.vsl) - do not modify!
4 //
5 package org.andromda.cartridges.ejb3.metafacades;
6
7 import org.andromda.metafacades.uml.ParameterFacade;
8
9 /**
10 * TODO: Model Documentation for
11 * org.andromda.cartridges.ejb3.metafacades.EJB3SessionOperationParameterFacade
12 *
13 * Metafacade interface to be used by AndroMDA cartridges.
14 */
15 public interface EJB3SessionOperationParameterFacade
16 extends ParameterFacade
17 {
18 /**
19 * Indicates the metafacade type (used for metafacade mappings).
20 *
21 * @return boolean always <code>true</code>
22 */
23 public boolean isEJB3SessionOperationParameterFacadeMetaType();
24
25 /**
26 * Specifies that a parameter of the asynchronous call is the duration before the call is
27 * processed (or first processed for recurring calls).
28 * @return boolean
29 */
30 public boolean isSeamAsynchronousDuration();
31
32 /**
33 * Specifies that a parameter of the asynchronous call is the datetime at which the call is
34 * processed (or first processed for recurring calls).
35 * @return boolean
36 */
37 public boolean isSeamAsynchronousExpiration();
38
39 /**
40 * Specifies that an asynchronous method call recurs, and that the annotationed parameter is
41 * duration between recurrences.
42 * @return boolean
43 */
44 public boolean isSeamAsynchronousIntervalDuration();
45 }