/* * Copyright 2014 Federal Chancellery Austria * MOA-ID has been developed in a cooperation between BRZ, the Federal * Chancellery Austria - ICT staff unit, and Graz University of Technology. * * Licensed under the EUPL, Version 1.1 or - as soon they will be approved by * the European Commission - subsequent versions of the EUPL (the "Licence"); * You may not use this work except in compliance with the Licence. * You may obtain a copy of the Licence at: * http://www.osor.eu/eupl/ * * Unless required by applicable law or agreed to in writing, software * distributed under the Licence is distributed on an "AS IS" basis, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the Licence for the specific language governing permissions and * limitations under the Licence. * * This product combines work with different licenses. See the "NOTICE" text * file for details on the various modules and licenses. * The "NOTICE" text file is part of the distribution. Any derivative works * that you distribute must include a readable copy of the "NOTICE" text file. */ package at.gv.egovernment.moa.id.commons.api.data; import java.util.Date; import iaik.x509.X509Certificate; /** * @author tlenz * */ public interface IVerifiyXMLSignatureResponse { /** * Returns the certificateCheckCode. * @return int */ int getCertificateCheckCode(); /** * Returns the signatureCheckCode. * @return int */ int getSignatureCheckCode(); /** * Returns the xmlDSIGManifestCheckCode. * @return int */ int getXmlDSIGManifestCheckCode(); /** * Returns the xmlDsigSubjectName. * @return String */ String getXmlDsigSubjectName(); /** * Sets the certificateCheckCode. * @param certificateCheckCode The certificateCheckCode to set */ void setCertificateCheckCode(int certificateCheckCode); /** * Sets the signatureCheckCode. * @param signatureCheckCode The signatureCheckCode to set */ void setSignatureCheckCode(int signatureCheckCode); /** * Sets the xmlDSIGManifestCheckCode. * @param xmlDSIGManifestCheckCode The xmlDSIGManifestCheckCode to set */ void setXmlDSIGManifestCheckCode(int xmlDSIGManifestCheckCode); /** * Sets the xmlDsigSubjectName. * @param xmlDsigSubjectName The xmlDsigSubjectName to set */ void setXmlDsigSubjectName(String xmlDsigSubjectName); /** * Returns the publicAuthorityCode. * @return int */ String getPublicAuthorityCode(); /** * Sets the publicAuthorityCode. * @param publicAuthorityCode The publicAuthorityCode to set */ void setPublicAuthorityCode(String publicAuthorityCode); /** * Returns the qualifiedCertificate. * @return boolean */ boolean isQualifiedCertificate(); /** * Returns the x509certificate. * @return X509Certificate */ X509Certificate getX509certificate(); /** * Sets the qualifiedCertificate. * @param qualifiedCertificate The qualifiedCertificate to set */ void setQualifiedCertificate(boolean qualifiedCertificate); /** * Sets the x509certificate. * @param x509certificate The x509certificate to set */ void setX509certificate(X509Certificate x509certificate); /** * Returns the xmlDSIGManigest. * @return boolean */ boolean isXmlDSIGManigest(); /** * Sets the xmlDSIGManigest. * @param xmlDSIGManigest The xmlDSIGManigest to set */ void setXmlDSIGManigest(boolean xmlDSIGManigest); /** * Returns the publicAuthority. * @return boolean */ boolean isPublicAuthority(); /** * Sets the publicAuthority. * @param publicAuthority The publicAuthority to set */ void setPublicAuthority(boolean publicAuthority); /** * Returns the the resulting code of the signature manifest check. * * @return The code of the sigature manifest check. */ int getSignatureManifestCheckCode(); /** * Sets the signatureManifestCode. * * @param signatureManifestCheckCode The signatureManifestCode to set. */ void setSignatureManifestCheckCode(int signatureManifestCheckCode); Date getSigningDateTime(); }