aboutsummaryrefslogtreecommitdiff
path: root/spss.server/src/at/gv/egovernment/moa/spss/api/xmlverify/VerifyXMLSignatureResponse.java
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2006-04-10 08:46:26 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2006-04-10 08:46:26 +0000
commit8c769bae2d6d71677ce71a299d618957029ab4ac (patch)
treeb1968d4c980101a6e07ce9db37c962d8ad86d0eb /spss.server/src/at/gv/egovernment/moa/spss/api/xmlverify/VerifyXMLSignatureResponse.java
parent046acaa65129860b54d2ce782bdf174a0ebc9f6c (diff)
downloadmoa-id-spss-8c769bae2d6d71677ce71a299d618957029ab4ac.tar.gz
moa-id-spss-8c769bae2d6d71677ce71a299d618957029ab4ac.tar.bz2
moa-id-spss-8c769bae2d6d71677ce71a299d618957029ab4ac.zip
This commit was manufactured by cvs2svn to create tagtags/Build.ID-1.3.1
'Build_ID-1_3_1'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build_ID-1_3_1@704 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.server/src/at/gv/egovernment/moa/spss/api/xmlverify/VerifyXMLSignatureResponse.java')
-rw-r--r--spss.server/src/at/gv/egovernment/moa/spss/api/xmlverify/VerifyXMLSignatureResponse.java60
1 files changed, 0 insertions, 60 deletions
diff --git a/spss.server/src/at/gv/egovernment/moa/spss/api/xmlverify/VerifyXMLSignatureResponse.java b/spss.server/src/at/gv/egovernment/moa/spss/api/xmlverify/VerifyXMLSignatureResponse.java
deleted file mode 100644
index 14ac71e67..000000000
--- a/spss.server/src/at/gv/egovernment/moa/spss/api/xmlverify/VerifyXMLSignatureResponse.java
+++ /dev/null
@@ -1,60 +0,0 @@
-package at.gv.egovernment.moa.spss.api.xmlverify;
-
-import java.util.List;
-
-import at.gv.egovernment.moa.spss.api.common.CheckResult;
-import at.gv.egovernment.moa.spss.api.common.SignerInfo;
-
-/**
- * Object that encapsulates the response on a request to verify an XML
- * signature.
- *
- * @author Patrick Peck
- * @author Stephan Grill
- * @version $Id$
- */
-public interface VerifyXMLSignatureResponse {
- /**
- * Gets a <code>SignerInfo</code> element according to XMLDSig.
- *
- * @return A <code>SignerInfo</code> element according to XMLDSig.
- */
- public SignerInfo getSignerInfo();
- /**
- * Gets datas signed by the signatory.
- *
- * @return The signed datas.
- */
- public List getHashInputDatas();
- /**
- * Gets source datas elements.
- *
- * @return The source datas elements.
- */
- public List getReferenceInputDatas();
- /**
- * Gets the result of the signature verification.
- *
- * @return The result of the signature verification.
- */
- public ReferencesCheckResult getSignatureCheck();
- /**
- * Gets the result of the signature manifest verification.
- *
- * @return The result of the signature manifest verification.
- */
- public ReferencesCheckResult getSignatureManifestCheck();
- /**
- * Gets XMLDSigManifestCheck elements.
- *
- * @return The XMLDSigManifestCheck elements.
- */
- public List getXMLDsigManifestChecks();
- /**
- * Gets the result of the certification verification.
- *
- * @return The result of the certificate verification.
- */
- public CheckResult getCertificateCheck();
-
-}