Config fetch for VESCollector through DCAE-SDK (CBS Client)
[dcaegen2/collectors/ves.git] / src / test / java / org / onap / dcae / TLSTestBase.java
index 1eb5728..1026e75 100644 (file)
@@ -2,9 +2,8 @@
  * ============LICENSE_START=======================================================
  * org.onap.dcaegen2.collectors.ves
  * ================================================================================
- * Copyright (C) 2018 Nokia. All rights reserved.
+ * Copyright (C) 2018-2020 Nokia. All rights reserved.
  * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
- * Copyright (C) 2019 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.
@@ -136,13 +135,6 @@ public class TLSTestBase {
             return createHttpsRestTemplate().getForEntity(createHttpsURL("/"), String.class);
         }
 
-
-        public ResponseEntity<String> makeHttpsRequestWithBasicAuth(final String username, final String password) {
-            return addBasicAuth(createHttpsRestTemplate(), username, password)
-                    .getForEntity(createHttpsURL("/"), String.class);
-
-        }
-
         public ResponseEntity<String> makeHttpsRequestWithClientCert() {
             return createHttpsRestTemplateWithKeyStore().getForEntity(createHttpsURL("/"), String.class);
         }