List of usage examples for org.springframework.beans.factory InitializingBean interface-usage
From source file org.esupportail.sympa.portlet.services.UserAgentInspector.java
public class UserAgentInspector implements InitializingBean { private List<String> userAgentMobile; private final List<Pattern> patterns = new ArrayList<Pattern>();
From source file org.obiba.mica.core.ExceptionHandlingAsyncTaskExecutor.java
public class ExceptionHandlingAsyncTaskExecutor implements AsyncTaskExecutor, InitializingBean, DisposableBean { private static final Logger log = LoggerFactory.getLogger(ExceptionHandlingAsyncTaskExecutor.class); private final AsyncTaskExecutor executor;
From source file org.camunda.bpm.getstarted.loanapproval.Starter.java
public class Starter implements InitializingBean { @Autowired private RuntimeService runtimeService; public void afterPropertiesSet() throws Exception {
From source file com.androidwhy.modules.test.cache.memcached.MemcachedSimulator.java
/** * JMemcached?, ?. * * @author Gordon */ public class MemcachedSimulator implements InitializingBean, DisposableBean {
From source file by.creepid.docsreporter.converter.OdfXhtmlConverterAdapter.java
/** * * @author rusakovich */ public abstract class OdfXhtmlConverterAdapter<ODT, PDF> extends OdfConverterAdapter implements InitializingBean {
From source file oop.appengine.modules.test.cache.memcached.MemcachedSimulator.java
/** * JMemcached?, ?. * * @author calvin */ public class MemcachedSimulator implements InitializingBean, DisposableBean {
From source file tomekkup.helenos.dao.ClusterConfigDao.java
/**
* ********************************************************
* Copyright: 2012 Tomek Kuprowski
*
* License: GPLv2: http://www.gnu.org/licences/gpl.html
*
From source file org.jboss.windup.decorator.xml.XPathClassifyingDecorator.java
import org.springframework.beans.factory.InitializingBean; public class XPathClassifyingDecorator extends XPathGateDecorator implements InitializingBean { private static final Log LOG = LogFactory.getLog(XPathClassifyingDecorator.class); protected String matchDescription;
From source file org.jasig.cas.util.JBossCacheFactoryBean.java
/**
*
* @author Scott Battaglia
* @version $Revision: 43909 $ $Date: 2008-06-25 14:22:25 -0400 (Wed, 25 Jun 2008) $
* @since 3.0.5
*
From source file kramer.ExecuteScriptDataSource.java
public class ExecuteScriptDataSource extends DriverManagerDataSource implements InitializingBean { private String script; public void afterPropertiesSet() throws Exception { new JdbcTemplate(this).execute(script); }