Package org.projectnessie.client
Class NessieConfigConstants
- java.lang.Object
-
- org.projectnessie.client.NessieConfigConstants
-
public final class NessieConfigConstants extends Object
Configuration constants for Nessie.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCONF_NESSIE_AUTH_TYPEConfig property name ("nessie.auth_type") for the authentication type, seeNessieClient.AuthType.static StringCONF_NESSIE_PASSWORDConfig property name ("nessie.password") for the password used for (basic) authentication.static StringCONF_NESSIE_REFConfig property name ("nessie.ref") for the nessie reference used by clients.static StringCONF_NESSIE_TRACINGConfig property name ("nessie.tracing") to enable adding the HTTP headers of an active OpenTracing span to all Nessie requests.static StringCONF_NESSIE_URIConfig property name ("nessie.uri") for the Nessie service URL.static StringCONF_NESSIE_USERNAMEConfig property name ("nessie.username") for the user name used for (basic) authentication.
-
-
-
Field Detail
-
CONF_NESSIE_URI
public static final String CONF_NESSIE_URI
Config property name ("nessie.uri") for the Nessie service URL.- See Also:
- Constant Field Values
-
CONF_NESSIE_USERNAME
public static final String CONF_NESSIE_USERNAME
Config property name ("nessie.username") for the user name used for (basic) authentication.- See Also:
- Constant Field Values
-
CONF_NESSIE_PASSWORD
public static final String CONF_NESSIE_PASSWORD
Config property name ("nessie.password") for the password used for (basic) authentication.- See Also:
- Constant Field Values
-
CONF_NESSIE_AUTH_TYPE
public static final String CONF_NESSIE_AUTH_TYPE
Config property name ("nessie.auth_type") for the authentication type, seeNessieClient.AuthType.If no "nessie.auth_type" option is specified, the implementation will default to
NessieClient.AuthType.BASIC, if both "nessie.username" and "nessie.password" are specified, otherwise the default will beNessieClient.AuthType.NONE. Note that "basic" HTTP authentication is not considered secure.- See Also:
- Constant Field Values
-
CONF_NESSIE_REF
public static final String CONF_NESSIE_REF
Config property name ("nessie.ref") for the nessie reference used by clients.- See Also:
- Constant Field Values
-
CONF_NESSIE_TRACING
public static final String CONF_NESSIE_TRACING
Config property name ("nessie.tracing") to enable adding the HTTP headers of an active OpenTracing span to all Nessie requests. Valid values aretrueandfalse.- See Also:
- Constant Field Values
-
-