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.wicket_1_3_0;
06:
07: import org.osgi.framework.BundleContext;
08: import org.terracotta.modules.configuration.TerracottaConfiguratorModule;
09:
10: public final class WicketTerracottaConfigurator extends
11: TerracottaConfiguratorModule {
12:
13: protected final void addInstrumentation(final BundleContext context) {
14: configHelper.addCustomAdapter(
15: "org.apache.wicket.protocol.http.WebApplication",
16: new WicketWebApplicationAdapter());
17: }
18:
19: }
|