Make aai-common agnostic of the embedded server (remove jetty-specific code) 52/139852/4
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Mon, 6 Jan 2025 10:34:17 +0000 (11:34 +0100)
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>
Mon, 6 Jan 2025 14:05:46 +0000 (15:05 +0100)
commit671edd133f4858b4b17663d109a23c80bbffa6b7
treea9b05a6180b7c061b57c711b58f867281c3b4d52
parente0d6fcbfcdc38edd17b36050feead7314667f4a5
Make aai-common agnostic of the embedded server (remove jetty-specific code)

- remove spring-boot-starter-[web,tomcat,jetty,jersey] in aai-rest
- remove spring-boot-starter-web in aai-schema-ingest
- remove keystore and certificate related leftovers
- this prepares the move to tomcat for the spring boot 3 upgrade (details in the ticket)

Issue-ID: AAI-4100
Change-Id: I04194c636f0548f7a832e430a40e48710ea4c00f
Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
31 files changed:
.gitignore
aai-core/.gitignore
aai-core/pom.xml
aai-core/src/main/java/org/onap/aai/prevalidation/ValidationServiceOneWayClient.java
aai-core/src/main/java/org/onap/aai/prevalidation/ValidationServiceRestClient.java
aai-core/src/main/java/org/onap/aai/util/HttpsAuthClient.java [deleted file]
aai-core/src/main/java/org/onap/aai/util/HttpsAuthExternalClient.java [deleted file]
aai-core/src/main/java/org/onap/aai/util/RestController.java [deleted file]
aai-core/src/main/java/org/onap/aai/util/RestControllerInterface.java [deleted file]
aai-core/src/test/resources/bundleconfig-local/aaf/cadi.properties [deleted file]
aai-core/src/test/resources/bundleconfig-local/aaf/org.onap.aai.props [deleted file]
aai-els-onap-logging/pom.xml
aai-els-onap-logging/src/main/java/org/onap/aai/util/AAIApplicationConfig.java
aai-els-onap-logging/src/main/java/org/onap/aai/util/AAIConstants.java
aai-els-onap-logging/src/test/java/org/onap/aai/util/AAIApplicationConfigTest.java
aai-els-onap-logging/src/test/resources/application.properties
aai-rest/pom.xml
aai-rest/src/main/java/org/onap/aai/restclient/AAIRestClient.java
aai-rest/src/main/java/org/onap/aai/restclient/JettyPasswordDecoder.java [deleted file]
aai-rest/src/main/java/org/onap/aai/restclient/NoAuthRestClient.java
aai-rest/src/main/java/org/onap/aai/restclient/OneWaySSLRestClient.java
aai-rest/src/main/java/org/onap/aai/restclient/PasswordDecoder.java [deleted file]
aai-rest/src/main/java/org/onap/aai/restclient/PropertyPasswordConfiguration.java [deleted file]
aai-rest/src/main/java/org/onap/aai/restclient/RestClient.java
aai-rest/src/main/java/org/onap/aai/restclient/TwoWaySSLRestClient.java
aai-schema-abstraction/src/main/java/org/onap/aai/schemaif/json/JsonSchemaProvider.java
aai-schema-abstraction/src/main/java/org/onap/aai/schemaif/json/SecureClientHttpRequestFactory.java [deleted file]
aai-schema-ingest/pom.xml
aai-schema-ingest/src/main/java/org/onap/aai/restclient/SchemaServiceOneWayClient.java
aai-schema-ingest/src/main/java/org/onap/aai/restclient/SchemaServiceRestClient.java
aai-schema-ingest/src/test/java/org/onap/aai/restclient/SchemaRestClientTest.java