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.jsf2.metafacades;
6   
7   import org.andromda.metafacades.uml.ClassifierFacade;
8   
9   /**
10   * Represents a JSF session object (a session object is an object that is stored in the session
11   * during application execution).
12   *
13   * Metafacade interface to be used by AndroMDA cartridges.
14   */
15  public interface JSFSessionObject
16      extends ClassifierFacade
17  {
18      /**
19       * Indicates the metafacade type (used for metafacade mappings).
20       *
21       * @return boolean always <code>true</code>
22       */
23      public boolean isJSFSessionObjectMetaType();
24  
25      /**
26       * The full path to the session object file name.
27       * @return String
28       */
29      public String getFullPath();
30  }