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

com.sendsafely.Privatekey Maven / Gradle / Ivy

package com.sendsafely;

public class Privatekey {

	private String privateKey;
    private String publicKeyId;
    
	public String getArmoredKey() {
		return privateKey;
	}
	
	public void setArmoredKey(String privateKey) {
		this.privateKey = privateKey;
	}
	
	public String getPublicKeyId() {
		return publicKeyId;
	}
	
	public void setPublicKeyId(String publicKeyId) {
		this.publicKeyId = publicKeyId;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy