All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.silanis.esl.api.model.Connector Maven / Gradle / Ivy

There is a newer version: 11.59.0
Show newest version
package com.silanis.esl.api.model;

public enum Connector {
    TRUST_VAULT(true, false), SFTP(false, false), IPAAS(false, false);

    private final boolean blockchain;
    private final boolean proofEmail;

    Connector(boolean blockchain, boolean proofEmail) {
        this.blockchain = blockchain;
        this.proofEmail = proofEmail;
    }

    public boolean isBlockchain() {
        return blockchain;
    }

    public boolean isProofEmail() {
        return proofEmail;
    }

    public String getValue() {
        return this.name();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy