Package org.projectnessie.versioned
Interface RepositoryInformation
-
@Immutable public interface RepositoryInformationInformational object to tell a client about the Nessie repository.All values are optional and may or may not be present, depending on the actual server version.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.util.Map<java.lang.String,java.lang.String>getAdditionalProperties()java.lang.StringgetDefaultBranch()java.lang.StringgetNoAncestorHash()java.time.InstantgetOldestPossibleCommitTimestamp()java.time.InstantgetRepositoryCreationTimestamp()
-
-
-
Method Detail
-
getDefaultBranch
@Nullable @Nullable java.lang.String getDefaultBranch()
-
getNoAncestorHash
@Nullable @Nullable java.lang.String getNoAncestorHash()
-
getRepositoryCreationTimestamp
@Nullable @Nullable java.time.Instant getRepositoryCreationTimestamp()
-
getOldestPossibleCommitTimestamp
@Nullable @Nullable java.time.Instant getOldestPossibleCommitTimestamp()
-
getAdditionalProperties
java.util.Map<java.lang.String,java.lang.String> getAdditionalProperties()
-
-