01: package org.andromda.cartridges.bpm4struts.metafacades;
02:
03: import org.andromda.utils.StringUtilsHelper;
04:
05: public class StrutsSessionObjectLogicImpl extends
06: StrutsSessionObjectLogic {
07: public StrutsSessionObjectLogicImpl(Object metaObject,
08: String context) {
09: super (metaObject, context);
10: }
11:
12: protected java.lang.String handleGetSessionKey() {
13: return StringUtilsHelper.lowerCamelCaseName(getName());
14: }
15:
16: protected java.lang.String handleGetFullPath() {
17: return '/' + getFullyQualifiedName().replace('.', '/');
18: }
19:
20: }
|