Example usage for org.apache.commons.pool PoolableObjectFactory interface-usage

List of usage examples for org.apache.commons.pool PoolableObjectFactory interface-usage

Introduction

In this page you can find the example usage for org.apache.commons.pool PoolableObjectFactory interface-usage.

Usage

From source file edu.ucsb.eucalyptus.transport.client.ClientFactory.java

/*******************************************************************************
 * Copyright (c) 2009  Eucalyptus Systems, Inc.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, only version 3 of the License.

From source file edu.vt.middleware.ldap.pool.commons.DefaultLdapPoolableObjectFactory.java

/**
 * <code>DefaultLdapPoolableObjectFactory</code> provides a implementation of a
 * commons pooling <code>PoolableObjectFactory</code> for testing.
 *
 * @author  Middleware Services
 * @version  $Revision$ $Date$

From source file org.mule.transport.ftp.FtpConnectionFactory.java

public class FtpConnectionFactory implements PoolableObjectFactory {
    private EndpointURI uri;

    public FtpConnectionFactory(EndpointURI uri) {
        this.uri = uri;
    }

From source file org.mule.transport.sftp.SftpConnectionFactory.java

public class SftpConnectionFactory implements PoolableObjectFactory {
    private final static Logger logger = Logger.getLogger(SftpConnectionFactory.class);

    private final ImmutableEndpoint endpoint;

    public SftpConnectionFactory(ImmutableEndpoint endpoint) {

From source file org.mule.transport.ftps.FtpsConnectionFactory.java

public class FtpsConnectionFactory implements PoolableObjectFactory {
    private EndpointURI uri;
    private int connectionTimeout = 0;

    public FtpsConnectionFactory(EndpointURI uri) {
        this.uri = uri;

From source file com.newlandframework.avatarmq.netty.MessageConnectPoolableObjectFactory.java

/**
 * @filename:MessageConnectPoolableObjectFactory.java
 * @description:MessageConnectPoolableObjectFactory?
 * @author tangjie<https://github.com/tang-jie>
 * @blog http://www.cnblogs.com/jietang/
 * @since 2016-8-11

From source file org.workin.fastdfs.factory.PoolableStorageServerFactory.java

/**
 * @description ?StorageServer?
 * @author  <a href="mailto:code727@gmail.com">?</a>
 * @version 1.0
 */
public interface PoolableStorageServerFactory extends PoolableObjectFactory<StorageServer> {

From source file com.jdon.controller.pool.CommonsPoolFactory.java

public class CommonsPoolFactory implements PoolableObjectFactory {
    private final static String module = CommonsPoolFactory.class.getName();

    private final TargetServiceFactory targetServiceFactory;
    private CommonsPoolAdapter pool;

From source file com.ning.killbill.zuora.zuora.ConnectionFactory.java

public class ConnectionFactory implements PoolableObjectFactory {

    private final ZuoraConfig zuoraConfig;
    private final ZuoraApi api;
    private final LogService logService;

From source file com.meidusa.amoeba.net.PoolableConnectionFactory.java

/**
 * 
 * @author <a href=mailto:piratebase@sina.com>Struct chen</a>
 *
 */
public abstract class PoolableConnectionFactory extends BackendConnectionFactory implements PoolableObjectFactory {