aboutsummaryrefslogtreecommitdiff
path: root/spss.test/src/at/gv/egovernment/moa/spss/client/call/SignatureVerificationCaller.java
diff options
context:
space:
mode:
author(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-06-24 11:00:16 +0000
committer(no author) <(no author)@d688527b-c9ab-4aba-bd8d-4036d912da1d>2005-06-24 11:00:16 +0000
commitc87e8ec82b5a85596bdab1adba86972cd88b96c5 (patch)
treee14cf111b5adc386a8f53c457623864825945111 /spss.test/src/at/gv/egovernment/moa/spss/client/call/SignatureVerificationCaller.java
parent4914ffa0d889ed525229c0715686b26e30cc1343 (diff)
downloadmoa-id-spss-c87e8ec82b5a85596bdab1adba86972cd88b96c5.tar.gz
moa-id-spss-c87e8ec82b5a85596bdab1adba86972cd88b96c5.tar.bz2
moa-id-spss-c87e8ec82b5a85596bdab1adba86972cd88b96c5.zip
This commit was manufactured by cvs2svn to create tagtags/Build-SPSS-1_2_1
'Build-SPSS-1_2_1'. git-svn-id: https://joinup.ec.europa.eu/svn/moa-idspss/tags/Build-SPSS-1_2_1@371 d688527b-c9ab-4aba-bd8d-4036d912da1d
Diffstat (limited to 'spss.test/src/at/gv/egovernment/moa/spss/client/call/SignatureVerificationCaller.java')
-rw-r--r--spss.test/src/at/gv/egovernment/moa/spss/client/call/SignatureVerificationCaller.java28
1 files changed, 0 insertions, 28 deletions
diff --git a/spss.test/src/at/gv/egovernment/moa/spss/client/call/SignatureVerificationCaller.java b/spss.test/src/at/gv/egovernment/moa/spss/client/call/SignatureVerificationCaller.java
deleted file mode 100644
index 612a1d345..000000000
--- a/spss.test/src/at/gv/egovernment/moa/spss/client/call/SignatureVerificationCaller.java
+++ /dev/null
@@ -1,28 +0,0 @@
-package at.gv.egovernment.moa.spss.client.call;
-
-import java.rmi.RemoteException;
-
-import javax.xml.namespace.QName;
-import javax.xml.rpc.ServiceException;
-
-import org.w3c.dom.Element;
-
-/**
- * @author Patrick Peck
- * @version $Id$
- */
-public class SignatureVerificationCaller extends MOACaller {
-
- private static final QName SERVICE_QNAME = new QName("SignatureVerification");
-
- public Element verifyCMSSignature(Element request, String endPoint)
- throws ServiceException, RemoteException, Exception {
- return doCall(SERVICE_QNAME, request, endPoint);
- }
-
- public Element verifyXMLSignature(Element request, String endPoint)
- throws ServiceException, RemoteException, Exception {
- return doCall(SERVICE_QNAME, request, endPoint);
- }
-
-}