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

com.safelayer.rap.impl.model.RsaKeyTemplateValue Maven / Gradle / Ivy

Go to download

The PKI Connector RESTAPI is a library that helps developing new PKI Connectors for TrustedX

The newest version!
package com.safelayer.rap.impl.model;

import com.safelayer.rap.api.model.RsaKeyTemplate;

public class RsaKeyTemplateValue implements RsaKeyTemplate {

	private Long size;

	public RsaKeyTemplateValue(Long size) {
		this.size = size;

	}

	public Long getSize() {
		return size;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy