1 package org.andromda.cartridges.jsf.metafacades;
2
3 /**
4 * MetafacadeLogic implementation for org.andromda.cartridges.jsf.metafacades.JSFSessionObject.
5 *
6 * @see org.andromda.cartridges.jsf.metafacades.JSFSessionObject
7 */
8 public class JSFSessionObjectLogicImpl
9 extends JSFSessionObjectLogic
10 {
11 private static final long serialVersionUID = 34L;
12 /**
13 * @param metaObject
14 * @param context
15 */
16 public JSFSessionObjectLogicImpl(Object metaObject, String context)
17 {
18 super(metaObject, context);
19 }
20
21 /**
22 * @return '/' + getFullyQualifiedName().replace('.', '/')
23 * @see org.andromda.cartridges.jsf.metafacades.JSFSessionObject#getFullPath()
24 */
25 protected String handleGetFullPath()
26 {
27 return '/' + this.getFullyQualifiedName().replace('.', '/');
28 }
29 }