Skip to content

Commit

Permalink
Fixes checkstyle problems.
Browse files Browse the repository at this point in the history
Signed-off-by: Santiago Pericasgeertsen <[email protected]>
  • Loading branch information
spericas committed Sep 18, 2023
1 parent 3d0a71c commit cc54ec4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,10 @@
import io.helidon.webclient.api.HttpClientRequest;
import io.helidon.webclient.api.HttpClientResponse;
import io.helidon.webclient.api.Proxy;

import io.helidon.webclient.api.WebClient;
import io.helidon.webclient.api.WebClientConfig;
import io.helidon.webclient.spi.ProtocolConfig;

import jakarta.ws.rs.client.Client;
import jakarta.ws.rs.core.Configuration;
import jakarta.ws.rs.core.Response;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,25 +34,25 @@ private HelidonProperties() {
/**
* Property name to set a {@link Config} instance to by used by underlying {@link WebClient}.
* This property is settable on {@link jakarta.ws.rs.core.Configurable#property(String, Object)}.
*
* @see io.helidon.webclient.api.WebClientConfig.Builder#config(io.helidon.common.config.Config)
*
* @see io.helidon.webclient.api.WebClientConfig.Builder#config(io.helidon.common.config.Config)
*/
public static final String CONFIG = "jersey.connector.helidon.config";

/**
* Property name to set a {@link Tls} instance to be used by underlying {@link WebClient}.
* This property is settable on {@link jakarta.ws.rs.core.Configurable#property(String, Object)}.
*
* @see io.helidon.webclient.api.WebClientConfig.Builder#tls(Tls)
*
* @see io.helidon.webclient.api.WebClientConfig.Builder#tls(Tls)
*/
public static final String TLS = "jersey.connector.helidon.tls";

/**
* Property name to set a {@code List<? extends ProtocolConfig>} instance with a list of
* protocol configs to be used by underlying {@link WebClient}.
* This property is settable on {@link jakarta.ws.rs.core.Configurable#property(String, Object)}.
*
* @see io.helidon.webclient.api.WebClientConfig.Builder#protocolConfigs(List)
*
* @see io.helidon.webclient.api.WebClientConfig.Builder#protocolConfigs(List)
*/
public static final String PROTOCOL_CONFIGS = "jersey.connector.helidon.protocolConfigs";

Expand All @@ -70,8 +70,8 @@ private HelidonProperties() {
* to request an HTTP/2 upgrade from HTTP/1.1 by setting its value to {@code "h2"}.
* When using TLS, Helidon uses negotiation via the ALPN extension instead of this
* property.
*
* @see io.helidon.webclient.api.HttpClientRequest#protocolId(String)
*
* @see io.helidon.webclient.api.HttpClientRequest#protocolId(String)
*/
public static final String PROTOCOL_ID = "jersey.connector.helidon.protocolId";
}

0 comments on commit cc54ec4

Please sign in to comment.