es.gob.afirma.standalone.plugins.SignResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of afirma-ui-simpleafirma-plugins Show documentation
Show all versions of afirma-ui-simpleafirma-plugins Show documentation
Base para la construccion de plugins de AutoFirma
The newest version!
package es.gob.afirma.standalone.plugins;
import java.util.Properties;
public class SignResult {
private byte[] signature;
private byte[] certificate;
private Properties extraData;
public byte[] getSignature() {
return this.signature;
}
public void setSignature(final byte[] signature) {
this.signature = signature;
}
public byte[] getCertificate() {
return this.certificate != null ? this.certificate.clone() : null;
}
public void setCertificate(final byte[] certificate) {
this.certificate = certificate != null ? certificate.clone() : null;
}
public Properties getExtraData() {
return this.extraData != null ? (Properties) this.extraData.clone() : null;
}
public void setDataFilename(final Properties extraData) {
this.extraData = extraData != null ? (Properties) extraData.clone() : null;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy