blob: 83932dd685db11568035e88eab70b61aced1580c [file] [log] [blame]
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance *
// * with the License. You may obtain a copy of the License at *
// * *
// * http://www.apache.org/licenses/LICENSE-2.0 *
// * *
// * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an *
// * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the *
// * specific language governing permissions and limitations under the License. *
// ***************************************************************************************************************************
package org.apache.juneau.rest.client.mock;
import java.io.*;
import java.util.concurrent.*;
import org.apache.http.*;
import org.apache.http.conn.*;
import org.apache.http.conn.routing.*;
import org.apache.http.protocol.*;
import org.apache.juneau.utils.*;
/**
* An implementation of {@link HttpClientConnectionManager} specifically for use in mocked connections using the {@link MockHttpConnection} class.
*
* This implementation is NOT thread safe.
*
* @deprecated Use <c>org.apache.juneau.rest.mock2</c>
*/
@Deprecated
public class MockHttpClientConnectionManager implements HttpClientConnectionManager {
final ConnectionRequest cr;
/**
* Constructor.
*
* @param c The mocked connection.
*/
public MockHttpClientConnectionManager(final MockHttpConnection c) {
final HttpClientConnection hcc = new MockHttpClientConnection(c);
this.cr = new ConnectionRequest() {
@Override
public boolean cancel() {
return false;
}
@Override
public HttpClientConnection get(long timeout, TimeUnit tunit) throws InterruptedException, ExecutionException, ConnectionPoolTimeoutException {
return hcc;
}
};
}
@Override /* HttpClientConnectionManager */
public ConnectionRequest requestConnection(HttpRoute route, Object state) {
return cr;
}
@Override /* HttpClientConnectionManager */
public void releaseConnection(HttpClientConnection conn, Object newState, long validDuration, TimeUnit timeUnit) {}
@Override /* HttpClientConnectionManager */
public void connect(HttpClientConnection conn, HttpRoute route, int connectTimeout, HttpContext context) throws IOException {}
@Override /* HttpClientConnectionManager */
public void upgrade(HttpClientConnection conn, HttpRoute route, HttpContext context) throws IOException {}
@Override /* HttpClientConnectionManager */
public void routeComplete(HttpClientConnection conn, HttpRoute route, HttpContext context) throws IOException {}
@Override /* HttpClientConnectionManager */
public void closeIdleConnections(long idletime, TimeUnit tunit) {}
@Override /* HttpClientConnectionManager */
public void closeExpiredConnections() {}
@Override /* HttpClientConnectionManager */
public void shutdown() {}
}