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

io.github.susimsek.hlf.autoconfigure.HlfCAClientProperties Maven / Gradle / Ivy

The newest version!
package io.github.susimsek.hlf.autoconfigure;

import org.springframework.boot.context.properties.ConfigurationProperties;

@ConfigurationProperties("hyperledger-fabric.ca-client")
public class HlfCAClientProperties {
    private String caName;
    private boolean allowAllHostNames = true;
    private String adminUserId;
    private String adminPassword;

    public String getCaName() {
        return caName;
    }

    public void setCaName(String caName) {
        this.caName = caName;
    }

    public boolean isAllowAllHostNames() {
        return allowAllHostNames;
    }

    public void setAllowAllHostNames(boolean allowAllHostNames) {
        this.allowAllHostNames = allowAllHostNames;
    }

    public String getAdminUserId() {
        return adminUserId;
    }

    public void setAdminUserId(String adminUserId) {
        this.adminUserId = adminUserId;
    }

    public String getAdminPassword() {
        return adminPassword;
    }

    public void setAdminPassword(String adminPassword) {
        this.adminPassword = adminPassword;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy