package org.orienteer.bpm; import org.apache.wicket.Application; import org.apache.wicket.IInitializer; import org.orienteer.core.OrienteerWebApplication; /** * {@link IInitializer} for 'orienteer-bpm' module */ public class Initializer implements IInitializer { @Override public void init(Application application) { OrienteerWebApplication app = (OrienteerWebApplication)application; app.registerModule(BPMModule.class); } @Override public void destroy(Application application) { OrienteerWebApplication app = (OrienteerWebApplication)application; } }