Example usage for org.apache.commons.pool BasePoolableObjectFactory subclass-usage

List of usage examples for org.apache.commons.pool BasePoolableObjectFactory subclass-usage

Introduction

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

Usage

From source file org.wso2.carbon.device.mgt.iot.input.adapter.http.oauth.OAuthTokenValidaterStubFactory.java

/**
 * This follows object pool pattern to manage the stub for oauth validation service.
 */
public class OAuthTokenValidaterStubFactory extends BasePoolableObjectFactory {
    private static final Logger log = Logger.getLogger(OAuthTokenValidaterStubFactory.class);
    private HttpClient httpClient;

From source file org.wso2.carbon.device.mgt.iot.output.adapter.ui.authentication.oauth.OAuthTokenValidaterStubFactory.java

/**
 * This follows object pool pattern to manage the stub for oauth validation service.
 */
public class OAuthTokenValidaterStubFactory extends BasePoolableObjectFactory {
    private static final Log log = LogFactory.getLog(OAuthTokenValidaterStubFactory.class);
    private HttpClient httpClient;

From source file edu.brown.utils.TypedPoolableObjectFactory.java

/**
 * @author pavlo
 * @param <T>
 */
public abstract class TypedPoolableObjectFactory<T extends Poolable> extends BasePoolableObjectFactory {

From source file edu.brown.pools.TypedPoolableObjectFactory.java

/**
 * @author pavlo
 * @param <T>
 */
public abstract class TypedPoolableObjectFactory<T extends Poolable> extends BasePoolableObjectFactory {

From source file org.ow2.petals.binding.soapproxy.listener.outgoing.ServiceClientPoolObjectFactory.java

public class ServiceClientPoolObjectFactory extends BasePoolableObjectFactory {

    private final String address;

    private final QName operation;

From source file org.wso2.carbon.device.mgt.output.adapter.websocket.authentication.oauth.OAuthTokenValidaterStubFactory.java

/**
 * This follows object pool pattern to manage the stub for oauth validation service.
 */
public class OAuthTokenValidaterStubFactory extends BasePoolableObjectFactory {
    private static final Log log = LogFactory.getLog(OAuthTokenValidaterStubFactory.class);
    private HttpClient httpClient;

From source file org.wso2.carbon.device.mgt.extensions.remote.session.authentication.oauth.OAuthTokenValidatorStubFactory.java

/**
 * This follows object pool pattern to manage the stub for oauth validation service.
 */
public class OAuthTokenValidatorStubFactory extends BasePoolableObjectFactory {
    private static final Log log = LogFactory.getLog(OAuthTokenValidatorStubFactory.class);
    private HttpClient httpClient;

From source file TestRedundantObjectPool.java

    public class EmployeeFactory extends BasePoolableObjectFactory {

        public Object makeObject() {
            return new Employee();
        }

From source file TestSoftRef.java

    public class EmployeeFactory extends BasePoolableObjectFactory {

        public Object makeObject() {
            return new Employee();
        }

From source file org.ow2.petals.binding.soap.listener.outgoing.ServiceClientPoolObjectFactory.java

/**
 * Get new Axis2 ServiceClient from the pool factory
 * 
 * @author Christophe DENEUX - Cap Gemini
 * @author Christophe HAMERLING - eBM WebSourcing
 *