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

com.cx.restclient.sca.utils.fingerprints.CxSCAFileSignature Maven / Gradle / Ivy

There is a newer version: 2024.3.26
Show newest version
package com.cx.restclient.sca.utils.fingerprints;

public class CxSCAFileSignature {
    private String type;
    private String value;

    public CxSCAFileSignature(String type, String value) {
        this.type = type;
        this.value = value;
    }

    public String getType() {
        return type;
    }

    public void setType(String type) {
        this.type = type;
    }

    public String getValue() {
        return value;
    }

    public void setValue(String value) {
        this.value = value;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy