List of usage examples for org.springframework.beans.factory InitializingBean interface-usage
From source file eu.delving.core.util.MongoFactory.java
/** * @author Sjoerd Siebinga <sjoerd.siebinga@gmail.com> * @since 3/1/11 10:19 PM */ public class MongoFactory implements InitializingBean {
From source file org.opencredo.cloud.storage.s3.S3Template.java
public abstract class S3Template implements StorageOperations, InitializingBean { protected static final Logger LOG = LoggerFactory.getLogger(S3Template.class); protected static final String BUCKET_NAME_CANNOT_BE_NULL = "Bucket name cannot be null"; private String defaultContainerName; public S3Template(final String defaultContainerName) {
From source file org.springframework.dao.support.DaoSupport.java
/**
* Generic base class for DAOs, defining template methods for DAO initialization.
*
* <p>Extended by Spring's specific DAO support classes, such as:
* JdbcDaoSupport, JdoDaoSupport, etc.
*
From source file com.wiiyaya.provider.main.service.impl.PasswordEncoderImpl.java
/**
* <p></p>
*
* <p>??</p>
*
* <p></p>
From source file gda.images.camera.ClientSideSampleMovementServiceImpl.java
/** * Service that can move a sample using pixels. */ public class ClientSideSampleMovementServiceImpl implements ClientSideSampleMovementService, InitializingBean { private static final Logger logger = LoggerFactory.getLogger(ClientSideSampleMovementServiceImpl.class);
From source file org.pentaho.pat.server.data.impl.AbstractManager.java
public abstract class AbstractManager extends HibernateDaoSupport implements InitializingBean {
}
From source file org.spring.beans.factory.TestBeanFactory.java
/**
* The TestFactoryBean class is a Spring FactoryBean constructing an instance of the TestBean Spring bean component.
*
* @author John Blum
* @see org.spring.beans.TestBean
* @see org.springframework.beans.factory.FactoryBean
From source file org.hummer.spring.beans.ReferenceBean.java
public class ReferenceBean implements FactoryBean<Object>, InitializingBean { private String service; private String version; private int timeout; private boolean unit;
From source file org.mzd.shap.spring.io.DescriptionEditor.java
/**
* A common use case in parsing annotation data is selecting a subrange of text. This might be to
* create a more generic description, remove reference database specific chaff or zero-in on a
* piece of information (Eg. EC number).
*
* NOTE!! The editPattern must match the entire line.
From source file org.pentaho.pat.server.services.impl.AbstractService.java
public abstract class AbstractService implements InitializingBean { protected UserManager userManager; public UserManager getUserManager() { return userManager;