Example usage for org.springframework.http HttpInputMessage interface-usage

List of usage examples for org.springframework.http HttpInputMessage interface-usage

Introduction

In this page you can find the example usage for org.springframework.http HttpInputMessage interface-usage.

Usage

From source file at.create.android.ffc.http.MockHttpInputMessage.java

/**
 * @author Philipp Ullmann
 * Mock HttpInputMessage to parse XML strings.
 */
public class MockHttpInputMessage implements HttpInputMessage {
    private final HttpHeaders headers = new HttpHeaders();

From source file com.wisemapping.rest.DebugMappingJacksonHttpMessageConverter.java

class WrapHttpInputMessage implements HttpInputMessage {
    private InputStream body;
    private HttpHeaders headers;

    WrapHttpInputMessage(InputStream is, HttpHeaders headers) {
        this.body = is;