summaryrefslogtreecommitdiff
path: root/pdf-over-signator
diff options
context:
space:
mode:
authorJakob Heher <jakob.heher@iaik.tugraz.at>2022-09-30 14:03:38 +0200
committerJakob Heher <jakob.heher@iaik.tugraz.at>2022-09-30 14:03:38 +0200
commit96ba5fe6185cfdeb326ae3148ce88f299e41ef25 (patch)
treec166322699389afebf495a919f3529eea1918a2c /pdf-over-signator
parentf5d1de1e0bd56b2c61953b1688e53b6efe249ddb (diff)
downloadpdf-over-96ba5fe6185cfdeb326ae3148ce88f299e41ef25.tar.gz
pdf-over-96ba5fe6185cfdeb326ae3148ce88f299e41ef25.tar.bz2
pdf-over-96ba5fe6185cfdeb326ae3148ce88f299e41ef25.zip
YAGNI: SLRequest abstraction
Diffstat (limited to 'pdf-over-signator')
-rw-r--r--pdf-over-signator/src/main/java/at/asit/pdfover/signator/BkuSlConnector.java2
-rw-r--r--pdf-over-signator/src/main/java/at/asit/pdfover/signator/SLRequest.java67
2 files changed, 1 insertions, 68 deletions
diff --git a/pdf-over-signator/src/main/java/at/asit/pdfover/signator/BkuSlConnector.java b/pdf-over-signator/src/main/java/at/asit/pdfover/signator/BkuSlConnector.java
index a4f7213b..002c457c 100644
--- a/pdf-over-signator/src/main/java/at/asit/pdfover/signator/BkuSlConnector.java
+++ b/pdf-over-signator/src/main/java/at/asit/pdfover/signator/BkuSlConnector.java
@@ -26,5 +26,5 @@ public interface BkuSlConnector {
* @return SL Response
* @throws SignatureException
*/
- public String handleSLRequest(SLRequest request) throws SignatureException;
+ public String handleSLRequest(PdfAs4SLRequest request) throws SignatureException;
}
diff --git a/pdf-over-signator/src/main/java/at/asit/pdfover/signator/SLRequest.java b/pdf-over-signator/src/main/java/at/asit/pdfover/signator/SLRequest.java
deleted file mode 100644
index 95aee1e0..00000000
--- a/pdf-over-signator/src/main/java/at/asit/pdfover/signator/SLRequest.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * Copyright 2012 by A-SIT, Secure Information Technology Center Austria
- *
- * 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://joinup.ec.europa.eu/software/page/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.
- */
-package at.asit.pdfover.signator;
-
-/**
- * Security Layer Request
- */
-public class SLRequest {
-
- /**
- * The security layer request
- */
- private String request;
-
- /**
- * The document to be signed
- */
- private DocumentSource signatureData;
-
- /**
- * Set the SL request
- * @param request the request to set
- */
- protected void setRequest(String request) {
- this.request = request;
- }
-
- /**
- * Set the signature data (document to be signed)
- * @param signatureData the signatureData to set
- */
- protected void setSignatureData(DocumentSource signatureData) {
- this.signatureData = signatureData;
- }
-
- /**
- * Gets the signature data for this request
- *
- * @return The document source
- */
- public DocumentSource getSignatureData()
- {
- return this.signatureData;
- }
-
- /**
- * Gets the request String
- *
- * @return the request
- */
- public String getRequest() {
- return this.request;
- }
-}