aboutsummaryrefslogtreecommitdiffstats
path: root/aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java
diff options
context:
space:
mode:
authorFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-02-23 17:01:49 +0100
committerFiete Ostkamp <Fiete.Ostkamp@telekom.de>2024-02-26 09:01:48 +0100
commite5b5a5e4d7cae28a72641aae6f5f6099db1ed695 (patch)
treea6038e4ae2abd00465697c4e2d2dcdef45aa9dc0 /aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java
parent26c4ef2510d0736ae9a18c8eac2ea2406a83092d (diff)
Do not use reflection for injecting the DslQueryProcessors
- trade terseness for easier understanding of the code and maintainability - Split up DslQueryProcessor in two separate classes (v1 and v2) Issue-ID: AAI-3786 Change-Id: I7fe0411f6b694eb82616ac4a61a5376c630b5b2a Signed-off-by: Fiete Ostkamp <Fiete.Ostkamp@telekom.de>
Diffstat (limited to 'aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java')
-rw-r--r--aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java b/aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java
index b40c328..26f1f5c 100644
--- a/aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java
+++ b/aai-traversal/src/main/java/org/onap/aai/service/RetiredService.java
@@ -31,8 +31,8 @@ import org.springframework.context.annotation.PropertySource;
import org.springframework.stereotype.Service;
@Service
-@PropertySource("classpath:retired.properties")
-@PropertySource(value = "file:${server.local.startpath}/retired.properties")
+@PropertySource(value = "classpath:retired.properties", ignoreResourceNotFound = true)
+@PropertySource(value = "file:${server.local.startpath}/retired.properties", ignoreResourceNotFound = true)
public class RetiredService {
private String retiredPatterns;