keycloakjar.org.springframework.http.converter.ObjectToStringHttpMessageConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of camunda-bpm-identity-keycloak-all Show documentation
Show all versions of camunda-bpm-identity-keycloak-all Show documentation
Camunda Keycloak Identity Provider Plugin including all transitive dependencies
The newest version!
/*
* Copyright 2002-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
*
* https://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.http.converter;
import java.io.IOException;
import java.nio.charset.Charset;
import org.springframework.core.convert.ConversionService;
import org.springframework.http.HttpInputMessage;
import org.springframework.http.HttpOutputMessage;
import org.springframework.http.MediaType;
import org.springframework.lang.Nullable;
import org.springframework.util.Assert;
/**
* An {@code HttpMessageConverter} that uses {@link StringHttpMessageConverter}
* for reading and writing content and a {@link ConversionService} for converting
* the String content to and from the target object type.
*
* By default, this converter supports the media type {@code text/plain} only.
* This can be overridden through the {@link #setSupportedMediaTypes supportedMediaTypes}
* property.
*
*
A usage example:
*
*
* <bean class="org.springframework.http.converter.ObjectToStringHttpMessageConverter">
* <constructor-arg>
* <bean class="org.springframework.context.support.ConversionServiceFactoryBean"/>
* </constructor-arg>
* </bean>
*
*
* @author Dmitry Katsubo
* @author Rossen Stoyanchev
* @since 3.2
*/
public class ObjectToStringHttpMessageConverter extends AbstractHttpMessageConverter