com.quorum.tessera.cli.CliAdapter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cli-api Show documentation
Show all versions of cli-api 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.cli;
import com.quorum.tessera.io.SystemAdapter;
public interface CliAdapter {
CliType getType();
CliResult execute(String... args) throws Exception;
default SystemAdapter sys() {
return SystemAdapter.INSTANCE;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy