01: package org.osbl.client.web.spring;
02:
03: import org.osbl.client.web.WebModule;
04: import org.springframework.beans.factory.InitializingBean;
05: import org.apache.commons.logging.LogFactory;
06:
07: public abstract class SpringWebModule implements WebModule,
08: InitializingBean {
09: private static org.apache.commons.logging.Log LOG = LogFactory
10: .getLog(SpringWebModule.class);
11:
12: public void afterPropertiesSet() throws Exception {
13: LOG
14: .info("Initializing WebModule "
15: + getClass().getSimpleName());
16: initialize();
17: }
18: }
|