001// license-header java merge-point 002// 003// Attention: generated code (by Metafacade.vsl) - do not modify! 004// 005package org.andromda.cartridges.jsf2.metafacades; 006 007import org.andromda.metafacades.uml.ClassifierFacade; 008 009/** 010 * Represents a JSF session object (a session object is an object that is stored in the session 011 * during application execution). 012 * 013 * Metafacade interface to be used by AndroMDA cartridges. 014 */ 015public interface JSFSessionObject 016 extends ClassifierFacade 017{ 018 /** 019 * Indicates the metafacade type (used for metafacade mappings). 020 * 021 * @return boolean always <code>true</code> 022 */ 023 public boolean isJSFSessionObjectMetaType(); 024 025 /** 026 * The full path to the session object file name. 027 * @return String 028 */ 029 public String getFullPath(); 030}