001package org.andromda.cartridges.jsf2.metafacades;
002
003/**
004 * MetafacadeLogic implementation for org.andromda.cartridges.jsf2.metafacades.JSFSessionObject.
005 *
006 * @see org.andromda.cartridges.jsf2.metafacades.JSFSessionObject
007 */
008public class JSFSessionObjectLogicImpl
009    extends JSFSessionObjectLogic
010{
011    private static final long serialVersionUID = 34L;
012    /**
013     * @param metaObject
014     * @param context
015     */
016    public JSFSessionObjectLogicImpl(Object metaObject, String context)
017    {
018        super(metaObject, context);
019    }
020
021    /**
022     * @return '/' + getFullyQualifiedName().replace('.', '/')
023     * @see org.andromda.cartridges.jsf2.metafacades.JSFSessionObject#getFullPath()
024     */
025    protected String handleGetFullPath()
026    {
027        return '/' + this.getFullyQualifiedName().replace('.', '/');
028    }
029}