01: /*
02: * All content copyright (c) 2003-2007 Terracotta, Inc., except as may otherwise be noted in a separate copyright
03: * notice. All rights reserved.
04: */
05: package org.terracotta.modules.struts_1_1;
06:
07: import org.osgi.framework.BundleContext;
08: import org.terracotta.modules.configuration.TerracottaConfiguratorModule;
09:
10: public final class StrutsTerracottaConfigurator extends
11: TerracottaConfiguratorModule {
12:
13: protected void addInstrumentation(BundleContext context) {
14: configHelper.addCustomAdapter(
15: "org.apache.struts.taglib.bean.IncludeTag",
16: new IncludeTagAdapter());
17: super.addInstrumentation(context);
18: }
19:
20: }
|