Package org.projectnessie.events.spi
Interface EventSystemConfiguration
@Immutable
public interface EventSystemConfiguration
System-wide configuration of the Nessie server.
-
Method Summary
Modifier and TypeMethodDescriptionAdditional configuration properties.intThe maximum API version supported by the server.intThe minimum API version supported by the server.Semver version representing the behavior of the Nessie server.
-
Method Details
-
getSpecVersion
String getSpecVersion()Semver version representing the behavior of the Nessie server. -
getMinSupportedApiVersion
int getMinSupportedApiVersion()The minimum API version supported by the server.API versions are numbered sequentially, as they are developed.
-
getMaxSupportedApiVersion
int getMaxSupportedApiVersion()The maximum API version supported by the server.API versions are numbered sequentially, as they are developed.
-
getAdditionalProperties
Additional configuration properties. Currently, always empty.
-