eu.europa.esig.dss.RemoteKeyEntry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dss-model Show documentation
Show all versions of dss-model Show documentation
DSS Model contains the data model representation for DSS
package eu.europa.esig.dss;
import java.io.Serializable;
@SuppressWarnings("serial")
public class RemoteKeyEntry implements Serializable {
private String alias;
private EncryptionAlgorithm encryptionAlgo;
private RemoteCertificate certificate;
private RemoteCertificate[] certificateChain;
public String getAlias() {
return alias;
}
public void setAlias(String alias) {
this.alias = alias;
}
public EncryptionAlgorithm getEncryptionAlgo() {
return encryptionAlgo;
}
public void setEncryptionAlgo(EncryptionAlgorithm encryptionAlgo) {
this.encryptionAlgo = encryptionAlgo;
}
public RemoteCertificate getCertificate() {
return certificate;
}
public void setCertificate(RemoteCertificate certificate) {
this.certificate = certificate;
}
public RemoteCertificate[] getCertificateChain() {
return certificateChain;
}
public void setCertificateChain(RemoteCertificate[] certificateChain) {
this.certificateChain = certificateChain;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy