From 96ba5fe6185cfdeb326ae3148ce88f299e41ef25 Mon Sep 17 00:00:00 2001 From: Jakob Heher Date: Fri, 30 Sep 2022 14:03:38 +0200 Subject: YAGNI: SLRequest abstraction --- .../at/asit/pdfover/signator/BkuSlConnector.java | 2 +- .../java/at/asit/pdfover/signator/SLRequest.java | 67 ---------------------- 2 files changed, 1 insertion(+), 68 deletions(-) delete mode 100644 pdf-over-signator/src/main/java/at/asit/pdfover/signator/SLRequest.java (limited to 'pdf-over-signator') 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; - } -} -- cgit v1.2.3