Package org.projectnessie.events.spi
Interface EventSystemConfiguration
-
@Immutable public interface EventSystemConfigurationSystem-wide configuration of the Nessie server.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>getAdditionalProperties()Additional configuration properties.intgetMaxSupportedApiVersion()The maximum API version supported by the server.intgetMinSupportedApiVersion()The minimum API version supported by the server.java.lang.StringgetSpecVersion()Semver version representing the behavior of the Nessie server.
-
-
-
Method Detail
-
getSpecVersion
java.lang.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
java.util.Map<java.lang.String,java.lang.String> getAdditionalProperties()
Additional configuration properties. Currently, always empty.
-
-