
com.safelayer.rap.impl.model.EcKeyTemplateValue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pki-connector-restapi Show documentation
Show all versions of pki-connector-restapi Show documentation
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.EcKeyTemplate;
public class EcKeyTemplateValue implements EcKeyTemplate {
private String curve;
public EcKeyTemplateValue(String curve) {
super();
this.curve = curve;
}
@Override
public String getCurve() {
return curve;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy