View Javadoc
1   // license-header java merge-point
2   //
3   // Attention: generated code (by Metafacade.vsl) - do not modify!
4   //
5   package org.andromda.cartridges.bpm4struts.metafacades;
6   
7   import org.andromda.metafacades.uml.ClassifierFacade;
8   
9   /**
10   * TODO: Model Documentation for org.andromda.cartridges.bpm4struts.metafacades.StrutsSessionObject
11   *
12   * Metafacade interface to be used by AndroMDA cartridges.
13   */
14  public interface StrutsSessionObject
15      extends ClassifierFacade
16  {
17      /**
18       * Indicates the metafacade type (used for metafacade mappings).
19       *
20       * @return boolean always <code>true</code>
21       */
22      public boolean isStrutsSessionObjectMetaType();
23  
24      /**
25       * The full path to the session object class file (comparable to the package name).
26       * @return String
27       */
28      public String getFullPath();
29  
30      /**
31       * The key to which the instance of this object will be mapped in the session.
32       * @return String
33       */
34      public String getSessionKey();
35  }