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

org.springframework.restdocs.restassured3.operation.preprocess.UriModifyingOperationPreprocessor Maven / Gradle / Ivy

There is a newer version: 3.0.1
Show newest version
/*
 * Copyright 2014-2018 the original author or authors.
 *
 * 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 org.springframework.restdocs.restassured3.operation.preprocess;

import org.springframework.restdocs.operation.OperationRequest;
import org.springframework.restdocs.operation.OperationRequestPart;
import org.springframework.restdocs.operation.OperationResponse;
import org.springframework.restdocs.operation.preprocess.OperationPreprocessor;

/**
 * An {@link OperationPreprocessor} that modifies URIs in the request and in the response
 * by changing one or more of their host, scheme, and port. URIs in the following
 * locations are modified:
 * 
    *
  • {@link OperationRequest#getUri() Request URI} *
  • {@link OperationRequest#getHeaders() Request headers} *
  • {@link OperationRequest#getContent() Request content} *
  • {@link OperationRequestPart#getHeaders() Request part headers} *
  • {@link OperationRequestPart#getContent() Request part content} *
  • {@link OperationResponse#getHeaders() Response headers} *
  • {@link OperationResponse#getContent() Response content} *
* * @author Andy Wilkinson * @since 1.2.0 * @deprecated since 2.0.1 in favor of * {@link org.springframework.restdocs.operation.preprocess.UriModifyingOperationPreprocessor} */ @Deprecated public class UriModifyingOperationPreprocessor extends org.springframework.restdocs.operation.preprocess.UriModifyingOperationPreprocessor { }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy