From 3b14472b56f33cdc5025a7a8a787c18731659573 Mon Sep 17 00:00:00 2001 From: PatrikBuhr Date: Thu, 11 May 2023 15:00:25 +0200 Subject: [PATCH] Small changes Removed a dependency Add a config parameter Signed-off-by: PatrikBuhr Issue-ID: NONRTRIC-743 Change-Id: I4b2fef2291e8ee0785095f8e1c5111c18a557ce5 --- config/application.yaml | 5 ++++- pom.xml | 12 +++--------- 2 files changed, 7 insertions(+), 10 deletions(-) diff --git a/config/application.yaml b/config/application.yaml index 44e0b07..4f80d2e 100644 --- a/config/application.yaml +++ b/config/application.yaml @@ -46,7 +46,7 @@ logging: org.springframework: ERROR org.springframework.data: ERROR org.springframework.web.reactive.function.client.ExchangeFunctions: ERROR - org.springframework.web.servlet.DispatcherServlet: INFO + org.springframework.web.servlet.DispatcherServlet: ERROR org.onap.ccsdk.oran.a1policymanagementservice: INFO pattern: console: "%d{yyyy-MM-dd HH:mm:ss.SSS} [%-5level] [%thread] %logger{20} - %msg%n" @@ -91,6 +91,9 @@ app: # A file containing an authorization token, which shall be inserted in each HTTP header (authorization). # If the file name is empty, no authorization token is sent. auth-token-file: + # A URL to authorization provider such as OPA. Each time an A1 Policy is accessed, a call to this + # authorization provider is done for access control. If this is empty, no fine grained access control is done. + authorization-provider: # S3 object store usage is enabled by defining the bucket to use. This will override the vardata-directory parameter. s3: endpointOverride: http://localhost:9000 diff --git a/pom.xml b/pom.xml index da6b1ec..61eb38e 100644 --- a/pom.xml +++ b/pom.xml @@ -26,7 +26,7 @@ org.springframework.boot spring-boot-starter-parent - 3.0.4 + 3.0.6 org.o-ran-sc.nonrtric.plt @@ -52,7 +52,6 @@ 2.13.0 2.30.0 0.30.0 - 2.1.1 3.7.0.1746 0.8.8 3.1.0 @@ -60,7 +59,7 @@ 2.0.2 1.6.14 - + commons-io commons-io @@ -120,11 +119,6 @@ lombok provided - - javax.ws.rs - javax.ws.rs-api - ${javax.ws.rs-api.version} - org.glassfish.jersey.inject jersey-hk2 @@ -365,4 +359,4 @@ JIRA https://jira.o-ran-sc.org/ - \ No newline at end of file + -- 2.16.6