com.quorum.tessera.api.Version Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of common-jaxrs Show documentation
Show all versions of common-jaxrs Show documentation
Tessera is a stateless Java system that is used to enable the encryption, decryption, and distribution of private transactions for Quorum.
package com.quorum.tessera.api;
public interface Version {
default String version() {
return getClass().getModule().getDescriptor().version().map(v -> v.toString()).get();
}
}