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

com.founder.mip.utils.KeyData Maven / Gradle / Ivy

There is a newer version: 3.6.1.9
Show newest version
package com.founder.mip.utils;

public class KeyData {
    public String pubKey;
    public String priKey;

    public String getPubKey() {
        return pubKey;
    }

    public void setPubKey(String pubKey) {
        this.pubKey = pubKey;
    }

    public String getPriKey() {
        return priKey;
    }

    public void setPriKey(String priKey) {
        this.priKey = priKey;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy