diff options
Diffstat (limited to 'datafile-app-server/src')
-rw-r--r-- | datafile-app-server/src/test/java/org/onap/dcaegen2/collectors/datafile/http/HttpClientResponseHelper.java | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/datafile-app-server/src/test/java/org/onap/dcaegen2/collectors/datafile/http/HttpClientResponseHelper.java b/datafile-app-server/src/test/java/org/onap/dcaegen2/collectors/datafile/http/HttpClientResponseHelper.java index 0d52858d..22067d0b 100644 --- a/datafile-app-server/src/test/java/org/onap/dcaegen2/collectors/datafile/http/HttpClientResponseHelper.java +++ b/datafile-app-server/src/test/java/org/onap/dcaegen2/collectors/datafile/http/HttpClientResponseHelper.java @@ -1,6 +1,6 @@ /*- * ============LICENSE_START====================================================================== - * Copyright (C) 2020 Nokia. All rights reserved. + * Copyright (C) 2020-2021 Nokia. All rights reserved. * =============================================================================================== * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except * in compliance with the License. You may obtain a copy of the License at @@ -64,11 +64,21 @@ public class HttpClientResponseHelper { } @Override + public String path() { + return null; + } + + @Override public String fullPath() { return null; } @Override + public String requestId() { + return null; + } + + @Override public String uri() { return null; } @@ -142,6 +152,11 @@ public class HttpClientResponseHelper { } @Override + public String requestId() { + return null; + } + + @Override public String uri() { return null; } |