Package org.projectnessie.model
Class NessieConfiguration
- java.lang.Object
-
- org.projectnessie.model.NessieConfiguration
-
@Immutable public abstract class NessieConfiguration extends java.lang.Objectconfiguration object to tell a client how a server is configured.
-
-
Constructor Summary
Constructors Constructor Description NessieConfiguration()
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description abstract @Size(min=1) java.lang.StringgetDefaultBranch()The name of the default branch that the server will use unless an explicit branch was specified as an API call parameter.abstract intgetMaxSupportedApiVersion()The maximum API version supported by the server.
-
-
-
Method Detail
-
getDefaultBranch
@Nullable @Size(min=1) public abstract @Size(min=1) java.lang.String getDefaultBranch()
The name of the default branch that the server will use unless an explicit branch was specified as an API call parameter.
-
getMaxSupportedApiVersion
public abstract int getMaxSupportedApiVersion()
The maximum API version supported by the server.API versions are numbered sequentially, as they are developed.
-
-