Uses of Interface
org.springframework.cloud.gateway.filter.factory.rewrite.RewriteFunction
Packages that use RewriteFunction
Package
Description
TODO: package javadoc.
-
Uses of RewriteFunction in org.springframework.cloud.gateway.filter.factory.rewrite
Methods in org.springframework.cloud.gateway.filter.factory.rewrite that return RewriteFunctionModifier and TypeMethodDescription@Nullable RewriteFunctionModifyRequestBodyGatewayFilterFactory.Config.getRewriteFunction()@Nullable RewriteFunctionModifyResponseBodyGatewayFilterFactory.Config.getRewriteFunction()Methods in org.springframework.cloud.gateway.filter.factory.rewrite with parameters of type RewriteFunctionModifier and TypeMethodDescriptionModifyRequestBodyGatewayFilterFactory.Config.setRewriteFunction(Class<T> inClass, Class<R> outClass, RewriteFunction<T, R> rewriteFunction) ModifyRequestBodyGatewayFilterFactory.Config.setRewriteFunction(RewriteFunction rewriteFunction) ModifyRequestBodyGatewayFilterFactory.Config.setRewriteFunction(org.springframework.core.ParameterizedTypeReference<T> inClass, org.springframework.core.ParameterizedTypeReference<R> outClass, RewriteFunction<T, R> rewriteFunction) ModifyResponseBodyGatewayFilterFactory.Config.setRewriteFunction(Class<T> inClass, Class<R> outClass, RewriteFunction<T, R> rewriteFunction) ModifyResponseBodyGatewayFilterFactory.Config.setRewriteFunction(RewriteFunction rewriteFunction) -
Uses of RewriteFunction in org.springframework.cloud.gateway.route.builder
Methods in org.springframework.cloud.gateway.route.builder with parameters of type RewriteFunctionModifier and TypeMethodDescription<T,R> GatewayFilterSpec GatewayFilterSpec.modifyRequestBody(Class<T> inClass, Class<R> outClass, @Nullable String newContentType, RewriteFunction<T, R> rewriteFunction) A filter that can be used to modify the request body.<T,R> GatewayFilterSpec GatewayFilterSpec.modifyRequestBody(Class<T> inClass, Class<R> outClass, RewriteFunction<T, R> rewriteFunction) A filter that can be used to modify the request body.<T,R> GatewayFilterSpec GatewayFilterSpec.modifyRequestBody(org.springframework.core.ParameterizedTypeReference<T> inClass, org.springframework.core.ParameterizedTypeReference<R> outClass, @Nullable String newContentType, RewriteFunction<T, R> rewriteFunction) A filter that can be used to modify the request body.<T,R> GatewayFilterSpec GatewayFilterSpec.modifyRequestBody(org.springframework.core.ParameterizedTypeReference<T> inClass, org.springframework.core.ParameterizedTypeReference<R> outClass, RewriteFunction<T, R> rewriteFunction) A filter that can be used to modify the request body.<T,R> GatewayFilterSpec GatewayFilterSpec.modifyResponseBody(Class<T> inClass, Class<R> outClass, String newContentType, RewriteFunction<T, R> rewriteFunction) A filter that can be used to modify the response body.<T,R> GatewayFilterSpec GatewayFilterSpec.modifyResponseBody(Class<T> inClass, Class<R> outClass, RewriteFunction<T, R> rewriteFunction) A filter that can be used to modify the response body.