io.helidon.webclient.RequestConfiguration Maven / Gradle / Ivy
/*
* Copyright (c) 2020 Oracle and/or its affiliates.
*
* 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
*
* http://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 io.helidon.webclient;
import java.net.URI;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import io.helidon.webclient.spi.WebClientService;
/**
* Configuration of specific request.
*/
class RequestConfiguration extends WebClientConfiguration {
private final URI requestURI;
private final long requestId;
private final WebClientServiceRequest clientServiceRequest;
private final List services;
private RequestConfiguration(Builder builder) {
super(builder);
requestURI = builder.requestURI;
clientServiceRequest = builder.clientServiceRequest;
services = builder.services;
requestId = builder.requestId;
}
URI requestURI() {
return requestURI;
}
WebClientServiceRequest clientServiceRequest() {
return clientServiceRequest;
}
List services() {
return services;
}
long requestId() {
return requestId;
}
static Builder builder(URI requestURI) {
return new Builder(requestURI);
}
static final class Builder extends WebClientConfiguration.Builder {
private final URI requestURI;
private long requestId = -1;
private WebClientServiceRequest clientServiceRequest;
private List services = new ArrayList<>();
private Builder(URI requestURI) {
this.requestURI = requestURI;
}
Builder clientServiceRequest(WebClientServiceRequest clientServiceRequest) {
this.clientServiceRequest = clientServiceRequest;
return this;
}
Builder services(List services) {
this.services = Collections.unmodifiableList(services);
return this;
}
Builder requestId(long requestId) {
this.requestId = requestId;
return this;
}
@Override
public RequestConfiguration build() {
return new RequestConfiguration(this);
}
}
}