|
|
|
|
@ -113,7 +113,6 @@ public final class SnapshotServerHttpRequest implements ServerHttpRequest {
|
|
|
|
|
return new Builder()
|
|
|
|
|
.method(request.getMethod())
|
|
|
|
|
.uri(request.getURI())
|
|
|
|
|
.attributes(request.getAttributes())
|
|
|
|
|
.path(request.getPath().value())
|
|
|
|
|
.headers(request.getHeaders())
|
|
|
|
|
.queryParams(request.getQueryParams())
|
|
|
|
|
@ -138,11 +137,6 @@ public final class SnapshotServerHttpRequest implements ServerHttpRequest {
|
|
|
|
|
return uri;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public Map<String, Object> getAttributes() {
|
|
|
|
|
return attributes;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public RequestPath getPath() {
|
|
|
|
|
return RequestPath.parse(path, null);
|
|
|
|
|
|