From c449fe6f3149881ef534264216decd0235a0a0aa Mon Sep 17 00:00:00 2001
From: Jan Zickermann <jan.zickermann@dataport.de>
Date: Fri, 6 Sep 2024 10:27:31 +0200
Subject: [PATCH] OZG-6239 Remove unused files

---
 .../config/ClientConnectionProperties.java    | 39 --------
 .../xta/test/app/config/ClientProperties.java | 90 -------------------
 .../app/config/MapStructConfiguration.java    | 11 ---
 .../app/config/XtaConfigQualifierType.java    | 39 --------
 .../app/config/XtaTesterConfiguration.java    | 32 -------
 .../exception/CancelScenarioExecution.java    | 36 --------
 .../app/exception/ConfigurationException.java | 36 --------
 .../app/exception/XtaTesterException.java     | 36 --------
 src/main/resources/application_second_app.yml | 48 ----------
 src/main/resources/defaultEncodedFile.txt     | 86 ------------------
 .../xta/test/app/TestingApplication.java      | 17 ----
 11 files changed, 470 deletions(-)
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/config/ClientConnectionProperties.java
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/config/ClientProperties.java
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/config/MapStructConfiguration.java
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/config/XtaConfigQualifierType.java
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/config/XtaTesterConfiguration.java
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/exception/CancelScenarioExecution.java
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/exception/ConfigurationException.java
 delete mode 100644 src/main/java/de/ozgcloud/xta/test/app/exception/XtaTesterException.java
 delete mode 100644 src/main/resources/application_second_app.yml
 delete mode 100644 src/main/resources/defaultEncodedFile.txt
 delete mode 100644 src/test/java/de/ozgcloud/xta/test/app/TestingApplication.java

diff --git a/src/main/java/de/ozgcloud/xta/test/app/config/ClientConnectionProperties.java b/src/main/java/de/ozgcloud/xta/test/app/config/ClientConnectionProperties.java
deleted file mode 100644
index e7a1c8f..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/config/ClientConnectionProperties.java
+++ /dev/null
@@ -1,39 +0,0 @@
-/*
- * @formatter:off
- *
- * Copyright 2021-2022  Koordinierungsstelle für IT-Standards (KoSIT)
- *
- * Licensed under the European Public License, Version 1.2 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     https://opensource.org/licenses/EUPL-1.2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * @formatter:on
- */
-package de.ozgcloud.xta.test.app.config;
-
-import lombok.AllArgsConstructor;
-import lombok.Data;
-import lombok.NoArgsConstructor;
-
-@Data
-@AllArgsConstructor
-@NoArgsConstructor
-public class ClientConnectionProperties {
-
-	private String managementPort;
-	private String sendPort;
-	private String msgBoxPort;
-
-	public ClientConnectionProperties(final ClientConnectionProperties ccp) {
-		managementPort = ccp.getManagementPort();
-		sendPort = ccp.getSendPort();
-		msgBoxPort = ccp.getMsgBoxPort();
-	}
-}
diff --git a/src/main/java/de/ozgcloud/xta/test/app/config/ClientProperties.java b/src/main/java/de/ozgcloud/xta/test/app/config/ClientProperties.java
deleted file mode 100644
index 141d665..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/config/ClientProperties.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/*
- * @formatter:off
- *
- * Copyright 2021-2022  Koordinierungsstelle für IT-Standards (KoSIT)
- *
- * Licensed under the European Public License, Version 1.2 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     https://opensource.org/licenses/EUPL-1.2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * @formatter:on
- */
-package de.ozgcloud.xta.test.app.config;
-
-import jakarta.validation.constraints.NotNull;
-
-import org.springframework.core.io.ClassPathResource;
-import org.springframework.core.io.FileSystemResource;
-import org.springframework.core.io.Resource;
-import org.springframework.validation.annotation.Validated;
-
-import com.fasterxml.jackson.annotation.JsonIgnore;
-
-import lombok.Data;
-
-@Data
-@Validated
-public class ClientProperties {
-
-	private ClientConnectionProperties serverUrl;
-
-	private boolean checkHostnameInCertificate = true;
-
-	@NotNull
-	private String keyStore;
-
-	@NotNull
-	private String keyStorePassword;
-
-	@NotNull
-	private String keyPassword;
-
-	private String keyAlias;
-
-	@NotNull
-	private String trustStore;
-
-	@NotNull
-	private String trustStorePassword;
-
-	public ClientProperties() {
-	}
-
-	public ClientProperties(final ClientProperties cp) {
-		serverUrl = new ClientConnectionProperties(cp.getServerUrl());
-		checkHostnameInCertificate = cp.isCheckHostnameInCertificate();
-		keyStore = cp.getKeyStore();
-		keyStorePassword = cp.getKeyStorePassword();
-		keyPassword = cp.getKeyPassword();
-		keyAlias = cp.getKeyAlias();
-		trustStore = cp.getTrustStore();
-		trustStorePassword = cp.getTrustStorePassword();
-	}
-
-	@JsonIgnore
-	public Resource getKeyStoreAsResource() {
-		return getResource(keyStore);
-	}
-
-	@JsonIgnore
-	public Resource getTrustStoreAsResource() {
-		return getResource(trustStore);
-	}
-
-	private Resource getResource(final String resourceLocation) {
-		if (resourceLocation.startsWith("classpath:")) {
-			return new ClassPathResource(resourceLocation.substring("classpath:".length()));
-		}
-		if (resourceLocation.startsWith("file:")) {
-			return new FileSystemResource(resourceLocation.substring("file:".length()));
-		}
-		return new FileSystemResource(resourceLocation);
-	}
-}
diff --git a/src/main/java/de/ozgcloud/xta/test/app/config/MapStructConfiguration.java b/src/main/java/de/ozgcloud/xta/test/app/config/MapStructConfiguration.java
deleted file mode 100644
index 4b1f76b..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/config/MapStructConfiguration.java
+++ /dev/null
@@ -1,11 +0,0 @@
-/*
- * Created 2023-03-24
- */
-package de.ozgcloud.xta.test.app.config;
-
-import org.mapstruct.MapperConfig;
-import org.mapstruct.ReportingPolicy;
-
-@MapperConfig(componentModel = "spring", unmappedSourcePolicy = ReportingPolicy.WARN, unmappedTargetPolicy = ReportingPolicy.ERROR)
-public class MapStructConfiguration {
-}
\ No newline at end of file
diff --git a/src/main/java/de/ozgcloud/xta/test/app/config/XtaConfigQualifierType.java b/src/main/java/de/ozgcloud/xta/test/app/config/XtaConfigQualifierType.java
deleted file mode 100644
index 1e8f97f..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/config/XtaConfigQualifierType.java
+++ /dev/null
@@ -1,39 +0,0 @@
-package de.ozgcloud.xta.test.app.config;
-
-import com.fasterxml.jackson.annotation.JsonIgnore;
-
-import lombok.Data;
-
-@Data
-public class XtaConfigQualifierType {
-
-	private String qualifierSubject;
-
-	private String qualifierService;
-
-	@JsonIgnore
-	private final String messageTypeName = null; // was removed from UI and should generally be null
-
-	private String messageTypeCode;
-
-	@JsonIgnore
-	private final String messageTypeListUri = "urn:de:payloadSchema:elementName";
-
-	@JsonIgnore
-	private final String messageTypeListVersionId = "1.0";
-
-	private String messageTypePayloadSchema;
-
-	@JsonIgnore
-	private final String businessScenarioName = null; // was removed from UI and should generally be null
-
-	private String businessScenarioCode;
-
-	private String businessScenarioListUri;
-
-	private String businessScenarioListVersionId;
-
-	private boolean businessScenarioUseUndefined;
-
-	private String businessScenarioUndefined;
-}
diff --git a/src/main/java/de/ozgcloud/xta/test/app/config/XtaTesterConfiguration.java b/src/main/java/de/ozgcloud/xta/test/app/config/XtaTesterConfiguration.java
deleted file mode 100644
index 1af7693..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/config/XtaTesterConfiguration.java
+++ /dev/null
@@ -1,32 +0,0 @@
-/*
- * @formatter:off
- *
- * Copyright 2021-2022  Koordinierungsstelle für IT-Standards (KoSIT)
- *
- * Licensed under the European Public License, Version 1.2 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     https://opensource.org/licenses/EUPL-1.2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * @formatter:on
- */
-package de.ozgcloud.xta.test.app.config;
-
-import org.springframework.context.annotation.Configuration;
-import org.springframework.web.servlet.config.annotation.ResourceHandlerRegistry;
-import org.springframework.web.servlet.config.annotation.WebMvcConfigurer;
-
-@Configuration
-public class XtaTesterConfiguration implements WebMvcConfigurer {
-
-	@Override
-	public void addResourceHandlers(final ResourceHandlerRegistry registry) {
-		registry.addResourceHandler("/static/**").addResourceLocations("classpath:/static/");
-	}
-}
diff --git a/src/main/java/de/ozgcloud/xta/test/app/exception/CancelScenarioExecution.java b/src/main/java/de/ozgcloud/xta/test/app/exception/CancelScenarioExecution.java
deleted file mode 100644
index b5e177e..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/exception/CancelScenarioExecution.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * @formatter:off
- *
- * Copyright 2021-2022  Koordinierungsstelle für IT-Standards (KoSIT)
- *
- * Licensed under the European Public License, Version 1.2 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     https://opensource.org/licenses/EUPL-1.2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * @formatter:on
- */
-package de.ozgcloud.xta.test.app.exception;
-
-public class CancelScenarioExecution extends RuntimeException {
-
-	private static final long serialVersionUID = 3131526610326559836L;
-
-	public CancelScenarioExecution(final String message, final Throwable cause) {
-		super(message, cause);
-	}
-
-	public CancelScenarioExecution(final String message) {
-		super(message);
-	}
-
-	public CancelScenarioExecution(final Throwable cause) {
-		super(cause);
-	}
-}
diff --git a/src/main/java/de/ozgcloud/xta/test/app/exception/ConfigurationException.java b/src/main/java/de/ozgcloud/xta/test/app/exception/ConfigurationException.java
deleted file mode 100644
index 7ffc171..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/exception/ConfigurationException.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * @formatter:off
- *
- * Copyright 2021-2022  Koordinierungsstelle für IT-Standards (KoSIT)
- *
- * Licensed under the European Public License, Version 1.2 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     https://opensource.org/licenses/EUPL-1.2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * @formatter:on
- */
-package de.ozgcloud.xta.test.app.exception;
-
-public class ConfigurationException extends RuntimeException {
-
-	private static final long serialVersionUID = 7289416637437590349L;
-
-	public ConfigurationException(final String message, final Throwable cause) {
-		super(message, cause);
-	}
-
-	public ConfigurationException(final String message) {
-		super(message);
-	}
-
-	public ConfigurationException(final Throwable cause) {
-		super(cause);
-	}
-}
diff --git a/src/main/java/de/ozgcloud/xta/test/app/exception/XtaTesterException.java b/src/main/java/de/ozgcloud/xta/test/app/exception/XtaTesterException.java
deleted file mode 100644
index 9c1dd15..0000000
--- a/src/main/java/de/ozgcloud/xta/test/app/exception/XtaTesterException.java
+++ /dev/null
@@ -1,36 +0,0 @@
-/*
- * @formatter:off
- *
- * Copyright 2021-2022  Koordinierungsstelle für IT-Standards (KoSIT)
- *
- * Licensed under the European Public License, Version 1.2 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     https://opensource.org/licenses/EUPL-1.2
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * @formatter:on
- */
-package de.ozgcloud.xta.test.app.exception;
-
-public class XtaTesterException extends Exception {
-
-	private static final long serialVersionUID = -4170994559864389457L;
-
-	public XtaTesterException(final String message, final Throwable cause) {
-		super(message, cause);
-	}
-
-	public XtaTesterException(final String message) {
-		super(message);
-	}
-
-	public XtaTesterException(final Throwable cause) {
-		super(cause);
-	}
-}
diff --git a/src/main/resources/application_second_app.yml b/src/main/resources/application_second_app.yml
deleted file mode 100644
index d86b916..0000000
--- a/src/main/resources/application_second_app.yml
+++ /dev/null
@@ -1,48 +0,0 @@
-spring:
-  application: 
-    name: xta-test-server
-  servlet:
-    multipart:
-      max-file-size: 10MB
-      max-request-size: 10MB
-  devtools:
-    livereload:
-      port: 35730
-
-server:
-  port: 9443
-  tomcat.max-http-post-size: 10MB
-  tomcat.max-swallow-size: 10MB
-  ssl:
-    # enthaelt den privaten und oeffentlichen Schluessel der Anwendung
-    key-store: classpath:store/xta-test-server_keystore.p12
-    key-store-password: password
-    key-store-type: pkcs12
-    # Alias im KeyStore
-    key-alias: xta-test-application
-    key-password: password
-    # enthaelt alle vertrauenswuerdigen Zertifikate
-    trust-store: classpath:store/xta-test-server_truststore.jks
-    trust-store-password: password
-    trust-store-type: JKS
-    # want, need, none; see org.springframework.boot.web.server.ClientAuth
-    # wird ein Client Zertifikat benoetigt
-    client-auth: want
-  thymeleaf.cache: false
-
-app:
-  server:
-    http-port: 9080
-    redirect-to-https: false
-
-logging:
-  level:
-    ROOT: INFO
-    # no auto configuration report
-    org.springframework.boot.autoconfigure.logging.ConditionEvaluationReportLoggingListener: INFO
-    org.springframework.security: WARN
-    org.springframework.web: INFO
-    org.apache.axiom: INFO
-    de.ozgcloud.xta.test.app.soap: DEBUG
-    org.apache.axis2: INFO
-    
diff --git a/src/main/resources/defaultEncodedFile.txt b/src/main/resources/defaultEncodedFile.txt
deleted file mode 100644
index 8bedbda..0000000
--- a/src/main/resources/defaultEncodedFile.txt
+++ /dev/null
@@ -1,86 +0,0 @@
-<xenc:EncryptedData xmlns:xenc="http://www.w3.org/2001/04/xmlenc#"
-                    Type="http://www.w3.org/2001/04/xmlenc#Element">
-    <xenc:EncryptionMethod Algorithm="http://www.w3.org/2009/xmlenc11#aes256-gcm"/>
-    <ds:KeyInfo xmlns:ds="http://www.w3.org/2000/09/xmldsig#">
-        <xenc:EncryptedKey>
-            <xenc:EncryptionMethod Algorithm="http://www.w3.org/2001/04/xmlenc#kw-aes256"/>
-            <xenc:CipherData>
-                <xenc:CipherValue>VGqYuIiGc46HchelmoqJDu5Rot/owBiNer3IaUNU2XTGZs2o6VsyJQ==</xenc:CipherValue>
-            </xenc:CipherData>
-        </xenc:EncryptedKey>
-    </ds:KeyInfo>
-    <xenc:CipherData>
-        <xenc:CipherValue>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&#13;
-pHTMJicUA6Tj+Zo=</xenc:CipherValue>
-    </xenc:CipherData>
-</xenc:EncryptedData>
\ No newline at end of file
diff --git a/src/test/java/de/ozgcloud/xta/test/app/TestingApplication.java b/src/test/java/de/ozgcloud/xta/test/app/TestingApplication.java
deleted file mode 100644
index 699efb7..0000000
--- a/src/test/java/de/ozgcloud/xta/test/app/TestingApplication.java
+++ /dev/null
@@ -1,17 +0,0 @@
-/*
- * Created 2022-02-06
- */
-package de.ozgcloud.xta.test.app;
-
-import org.springframework.boot.SpringApplication;
-import org.springframework.boot.autoconfigure.SpringBootApplication;
-import org.springframework.context.annotation.Profile;
-
-@Profile({ "test" })
-@SpringBootApplication
-public class TestingApplication {
-
-	public static void main(final String[] args) {
-		SpringApplication.run(TestingApplication.class, args);
-	}
-}
-- 
GitLab