org.zalando.riptide.compatibility.HttpOutputMessageClientHttpRequestAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riptide-compatibility Show documentation
Show all versions of riptide-compatibility Show documentation
Client side response routing
package org.zalando.riptide.compatibility;
import lombok.AllArgsConstructor;
import lombok.experimental.Delegate;
import org.springframework.http.HttpOutputMessage;
import org.springframework.http.client.ClientHttpRequest;
import org.springframework.http.client.ClientHttpResponse;
import javax.annotation.Nonnull;
import java.net.URI;
@AllArgsConstructor
final class HttpOutputMessageClientHttpRequestAdapter implements ClientHttpRequest {
@Delegate
private final HttpOutputMessage message;
@Nonnull
@Override
public ClientHttpResponse execute() {
throw new UnsupportedOperationException();
}
@Nonnull
@Override
public String getMethodValue() {
throw new UnsupportedOperationException();
}
@Nonnull
@Override
public URI getURI() {
throw new UnsupportedOperationException();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy