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

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

Introduction

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

Usage

From source file io.pivotal.spring.xd.jdbcgpfdist.support.LoadFactoryBean.java

/**
 * FactoryBean for easy creation and configuration of {@link GreenplumLoad}
 * instances.
 *
 * @author Janne Valkealahti
 *

From source file org.apache.mina.springrpc.MinaServiceExporter.java

/**
 * 
 * @author politics wang
 * @since 2008-11-25
 * 
 */

From source file com.freebox.engeneering.application.system.ApplicationScope.java

/**
 * This class defines a vaadin application scope for spring beans.
 */
public class ApplicationScope implements Scope, DisposableBean {

    public static final String NAME = "applicationScope";

From source file org.apache.camel.component.db4o.TestObjectContainerFactoryBean.java

/**
 * @version $Revision$
 */
public class TestObjectContainerFactoryBean implements FactoryBean<ObjectContainer>, DisposableBean {

    private ObjectContainer objectContainer;

From source file io.github.jhipster.async.ExceptionHandlingAsyncTaskExecutor.java

public class ExceptionHandlingAsyncTaskExecutor implements AsyncTaskExecutor, InitializingBean, DisposableBean {

    private final Logger log = LoggerFactory.getLogger(ExceptionHandlingAsyncTaskExecutor.class);

    private final AsyncTaskExecutor executor;

From source file org.addsimplicity.anicetus.io.FileDeliveryAdapter.java

/**
 * The file delivery adapater will publish events to a file or stream. This
 * adapter is provided to assist with development debugging where running a bus
 * may not be necessary or convenient.
 * 
 * @author Dan Pritchett (driveawedge@yahoo.com)

From source file org.brixcms.rmiserver.AbstractRmiExporterBean.java

public abstract class AbstractRmiExporterBean implements InitializingBean, DisposableBean {
    private static final Logger logger = LoggerFactory.getLogger(AbstractRmiExporterBean.class);

    private int registryPort;
    private String serviceName;

From source file org.springframework.jms.JmsSessionFactoryBean.java

/**
 * Create a JMS Session from a Connection.  Requires a JMS 1.1 provider.
 *
 * @author Mark Pollack
 */
public class JmsSessionFactoryBean implements FactoryBean, InitializingBean, DisposableBean {

From source file proj.zoie.mbean.ZoieMBeanExporter.java

public class ZoieMBeanExporter extends MBeanExporter implements BeanFactoryAware, InitializingBean, DisposableBean {
    private static Logger logger = Logger.getLogger(ZoieMBeanExporter.class);

    @Override
    protected void registerBeans() {
        try {

From source file com.ryantenney.metrics.spring.config.annotation.MetricsConfigurerAdapter.java

/**
 * An implementation of {@link MetricsConfigurer} with empty methods allowing
 * sub-classes to override only the methods they're interested in.
 *
 * @see EnableMetrics
 * @see MetricsConfigurer