1 20 package org.enhydra.barracuda.contrib.dbroggisch.page; 21 22 import org.enhydra.barracuda.core.event.DefaultEventGateway; 23 import org.enhydra.barracuda.core.event.helper.EventConnectorFactory; 24 import org.apache.log4j.Logger; 25 26 27 39 public class RenderPageEventGateway extends DefaultEventGateway { 40 41 private static final Logger logger = Logger.getLogger(RenderPageEventGateway.class.getName()); 42 43 public RenderPageEventGateway() { 44 specifyLocalEventInterests(new EventConnectorFactory(RenderPageHandler.class), RenderPage.class); 45 if (logger.isInfoEnabled()) logger.info("specifyLocalEventInterests(new EventConnectorFactory(RenderPageHandler.class), RenderPage.class);"); 46 } 47 48 } 49 | Popular Tags |