Example usage for org.springframework.beans.factory InitializingBean interface-usage

List of usage examples for org.springframework.beans.factory InitializingBean interface-usage

Introduction

In this page you can find the example usage for org.springframework.beans.factory InitializingBean interface-usage.

Usage

From source file gov.nih.nci.cabig.caaers.tools.configuration.Configuration.java

/** 
 * @author Rhett Sutphin
 */
public class Configuration extends DatabaseBackedConfiguration implements InitializingBean {
    private String authenticationMode;
    public static Configuration LAST_LOADED_CONFIGURATION;

From source file com.mitchellbosecke.pebble.spring.PebbleViewResolver.java

public class PebbleViewResolver extends AbstractTemplateViewResolver implements InitializingBean {

    private String characterEncoding = "UTF-8";

    private PebbleEngine pebbleEngine;

From source file com.mitchellbosecke.pebble.spring4.PebbleViewResolver.java

public class PebbleViewResolver extends AbstractTemplateViewResolver implements InitializingBean {

    private String characterEncoding = "UTF-8";

    private PebbleEngine pebbleEngine;

From source file org.okj.commons.web.fileupload.FileUploadToolkits.java

/**
 * 
 * @author Administrator
 * @version $Id: FileUploadToolkits.java, v 0.1 2013-2-8 9:55:39 Administrator Exp $
 */
public class FileUploadToolkits implements InitializingBean {

From source file blast.config.spring.PlaceholderWithDefaultConfigurer.java

/**
 * PropertyPlaceholderConfigurer that allows to define inline default values.
 * <p>
 * Example:
 * <pre>
 * &lt;bean class="org.riotfamily.example.HelloWorld"&gt;

From source file com.devbury.desktoplib.systemtray.SplashDelay.java

public class SplashDelay implements InitializingBean {
    private int delay = 3;

    public void afterPropertiesSet() throws Exception {
        Thread.sleep(delay * 1000);
    }

From source file com.hs.mail.smtp.spool.SpoolRepository.java

/**
 * 
 * @author Won Chul Doh
 * @since Jun 5, 2010
 * 
 */

From source file com.bstek.dorado.data.type.validator.ValidatorTypeRegister.java

/**
 * @author Benny Bao (mailto:benny.bao@bstek.com)
 * @since 2010-7-27
 */
public class ValidatorTypeRegister implements InitializingBean, RemovableBean {
    private static final Log logger = LogFactory.getLog(ValidatorTypeRegister.class);

From source file org.beangle.security.core.session.category.DbCategorySessionController.java

/**
 * ?session
 * 
 * @author chaostone
 * @version $Id: DbCategorySessionController.java Jul 8, 2011 9:08:14 AM chaostone $
 */

From source file org.jboss.windup.reporting.transformers.MetaResultTransformResolver.java

/**
 * Resolves a given Meta file to it's proper tranformer.
 * 
 * @author bradsdavis
 * 
 */