org.zalando.riptide.logbook.SimpleHttpOutputMessage Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riptide-logbook Show documentation
Show all versions of riptide-logbook Show documentation
Client side response routing
package org.zalando.riptide.logbook;
import lombok.AllArgsConstructor;
import lombok.Getter;
import org.springframework.http.HttpHeaders;
import org.springframework.http.HttpOutputMessage;
import java.io.OutputStream;
@AllArgsConstructor
@Getter
final class SimpleHttpOutputMessage implements HttpOutputMessage {
private final HttpHeaders headers;
private final OutputStream body;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy