001// license-header java merge-point
002//
003// Attention: generated code (by Metafacade.vsl) - do not modify!
004//
005package org.andromda.cartridges.bpm4struts.metafacades;
006
007import org.andromda.metafacades.uml.ClassifierFacade;
008
009/**
010 * TODO: Model Documentation for org.andromda.cartridges.bpm4struts.metafacades.StrutsSessionObject
011 *
012 * Metafacade interface to be used by AndroMDA cartridges.
013 */
014public interface StrutsSessionObject
015    extends ClassifierFacade
016{
017    /**
018     * Indicates the metafacade type (used for metafacade mappings).
019     *
020     * @return boolean always <code>true</code>
021     */
022    public boolean isStrutsSessionObjectMetaType();
023
024    /**
025     * The full path to the session object class file (comparable to the package name).
026     * @return String
027     */
028    public String getFullPath();
029
030    /**
031     * The key to which the instance of this object will be mapped in the session.
032     * @return String
033     */
034    public String getSessionKey();
035}