List of usage examples for org.springframework.beans.factory InitializingBean interface-usage
From source file net.sf.jdbcwrappers.spring.DataSourceWrapperFactory.java
/** * Factory to create a DataSource wrapper in a Spring application context. * */ public class DataSourceWrapperFactory implements FactoryBean, InitializingBean { private WrapperFactory wrapperFactory;
From source file org.opendatakit.security.Realm.java
/**
* A bean class used to capture configuration values about this server
* deployment, its default mailto: domain and the service domains it authorizes.
*
* @author wbrunette@gmail.com
* @author mitchellsundt@gmail.com
From source file org.cherchgk.utils.ApplicationSettingsInitBean.java
/**
* ??, ? ? ?? ?
* ?.
*
* @author Andrey Grigorov
*/
From source file org.springmodules.cache.provider.CacheManagerFactoryBean.java
/**
* <p>
* Marker interface for factories of cache managers.
* </p>
*
* @author Alex Ruiz
From source file org.vertx.spring.examples.ContainerAwareBean.java
/** * @author swilliams * */ public class ContainerAwareBean implements InitializingBean, ContainerAware {
From source file org.jasig.cas.web.support.ThrottledSubmissionByIpAddressHandlerInterceptorAdapter.java
import org.springframework.web.servlet.ModelAndView; import org.springframework.web.servlet.handler.HandlerInterceptorAdapter; /** * Implementation of a HandlerInterceptorAdapter that keeps track of a mapping * of IP Addresses to number of failures to authenticate.
From source file biz.deinum.multitenant.validation.AbstractSimpleClassMappingValidator.java
/**
* This class takes two parameters a supportedClass and a field. The supportedClass
* is the class supported by this validator and the field is the field to validate.
*
* @author Marten Deinum
* @version 1.1
From source file info.sargis.eventbus.config.EventBusBuilder.java
public class EventBusBuilder implements InitializingBean, DisposableBean { private EventBus eventBus; private Set<Object> handlers;
From source file org.eclipse.swordfish.core.configuration.ConfigurationInjector.java
public class ConfigurationInjector implements InitializingBean { private final Logger LOG = LoggerFactory.getLogger(ConfigurationInjector.class); private String id; private Map configuration; private SwordfishContext swordfishContext;
From source file org.nabucco.alfresco.enhScriptEnv.common.script.registry.ScriptBootstrap.java
/** * This class provides a simple utility to bootstrap registerable scripts into a script registry on application context startup. * * @author Axel Faust, <a href="http://www.prodyna.com">PRODYNA AG</a> */ public class ScriptBootstrap<Script> implements InitializingBean {