01: /*
02: *
03: * (c) Copyright 2004 - 2007 osbl development team.
04: *
05: * This file is part of con:cern (http://concern.sf.net).
06: *
07: * the osbl is free software; you can redistribute it and/or modify
08: * it under the terms of the GNU General Public License
09: * as published by the Free Software Foundation; either version 2.1
10: * of the License, or (at your option) any later version.
11: *
12: * Please see COPYING for the complete licence.
13: */
14: package org.osbl.client;
15:
16: import org.conform.BeanMetaProvider;
17: import org.conform.VariationBeanMetaProvider;
18:
19: /**
20: * @version $Revision: 1.7 $
21: */
22: class SessionBeanMetaProvider extends VariationBeanMetaProvider {
23: FormatModifier formatModifier;
24:
25: public SessionBeanMetaProvider(BeanMetaProvider parent) {
26: setParent(parent);
27: addModifier(new LocalizationModifier(this ));
28: addModifier(new AuthorizationModifier(this ));
29: addModifier(new FormatModifier(this));
30: }
31: }
|