blob: 168993876f190b99150e178fc501cf0b058416bc [file] [log] [blame]
// Copyright 2008 Google Inc.
//
// Licensed 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 com.google.enterprise.secmgr.http;
import com.google.common.collect.ListMultimap;
import java.net.URL;
import javax.annotation.Nonnull;
import javax.annotation.Nullable;
/**
* An abstraction to hide HttpClient behind.
* This allows HTTP transport to be mocked for testing.
*/
public interface HttpClientInterface {
/**
* Create a new HTTP POST exchange object.
*
* @param url The URL to send the request to.
* @param parameters The POST parameters.
* @return A new HTTP exchange object.
*/
public HttpExchange postExchange(@Nonnull URL url,
@Nullable ListMultimap<String, String> parameters);
}