All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.google.api.client.googleapis.testing.services.MockGoogleClientRequest Maven / Gradle / Ivy

/*
 * 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.api.client.googleapis.testing.services;

import com.google.api.client.googleapis.services.AbstractGoogleClient;
import com.google.api.client.googleapis.services.AbstractGoogleClientRequest;
import com.google.api.client.http.HttpContent;
import com.google.api.client.http.HttpHeaders;
import com.google.api.client.http.UriTemplate;
import com.google.api.client.util.Beta;
import com.google.common.base.Strings;

/**
 * {@link Beta} 
* Thread-safe mock Google request. * * @param type of the response * @since 1.12 * @author Yaniv Inbar */ @Beta public class MockGoogleClientRequest extends AbstractGoogleClientRequest { /** * @param client Google client * @param method HTTP Method * @param uriTemplate URI template for the path relative to the base URL. If it starts with a "/" * the base path from the base URL will be stripped out. The URI template can also be a full * URL. URI template expansion is done using {@link UriTemplate#expand(String, String, Object, * boolean)} * @param content HTTP content or {@code null} for none * @param responseClass response class to parse into */ public MockGoogleClientRequest( AbstractGoogleClient client, String method, String uriTemplate, HttpContent content, Class responseClass) { this(client, method, uriTemplate, content, responseClass, null); } /** * @param client Google client * @param method HTTP Method * @param uriTemplate URI template for the path relative to the base URL. If it starts with a "/" * the base path from the base URL will be stripped out. The URI template can also be a full * URL. URI template expansion is done using {@link UriTemplate#expand(String, String, Object, * boolean)} * @param content HTTP content or {@code null} for none * @param responseClass response class to parse into * @param apiVersion ApiVersion to be passed to the header */ public MockGoogleClientRequest( AbstractGoogleClient client, String method, String uriTemplate, HttpContent content, Class responseClass, String apiVersion) { super(client, method, uriTemplate, content, responseClass); // Matches generator code: Null or Empty String is not set to the header if (!Strings.isNullOrEmpty(apiVersion)) { getRequestHeaders().set(API_VERSION_HEADER, apiVersion); } } @Override public MockGoogleClientRequest setDisableGZipContent(boolean disableGZipContent) { return (MockGoogleClientRequest) super.setDisableGZipContent(disableGZipContent); } @Override public MockGoogleClientRequest setRequestHeaders(HttpHeaders headers) { return (MockGoogleClientRequest) super.setRequestHeaders(headers); } @Override public MockGoogleClientRequest set(String fieldName, Object value) { return (MockGoogleClientRequest) super.set(fieldName, value); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy