From b78222c36437f03cfdfef4d95b5ae7ec5517565f Mon Sep 17 00:00:00 2001 From: ThamlurRaju Date: Tue, 21 Aug 2018 12:17:58 +0530 Subject: fixing major Sonar Issue Add a nested comment explaining why this method is empty Sonar Link: https://sonar.onap.org/project/issues?assignees=ThamlurRaju&id=org.onap.vfc.nfvo.resmanagement%3Avfc-nfvo-resmanagement&open=AV8lpe4M-08if2a6pmAJ&resolved=false&severities=MAJOR&types=CODE_SMELL Location: src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java Line No- 84 90 107 113 124 130 147 153 Change-Id: I69ae7d5768b4e6faa1b8ffbd434013739f287ecd Issue-ID: VFC-1042 Signed-off-by: ThamlurRaju --- .../common/util/restclient/HttpsRest.java | 28 +++++++++++++++++----- 1 file changed, 22 insertions(+), 6 deletions(-) (limited to 'ResmanagementService/service') diff --git a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java index 89fe850..cc64ca1 100644 --- a/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java +++ b/ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java @@ -87,12 +87,16 @@ public class HttpsRest extends HttpBaseRest { @Override public void asyncPut(String servicePath, RestfulParametes restParametes, RestfulAsyncCallback callback) throws ServiceException { - + + //This functionality has not been implemented yet + } @Override public void asyncPut(String servicePath, RestfulParametes restParametes, RestfulOptions options, RestfulAsyncCallback callback) throws ServiceException { + + //This functionality has not been implemented yet } @@ -110,13 +114,17 @@ public class HttpsRest extends HttpBaseRest { @Override public void asyncPost(String servicePath, RestfulParametes restParametes, RestfulAsyncCallback callback) throws ServiceException { - + + //This functionality has not been implemented yet + } @Override public void asyncPost(String servicePath, RestfulParametes restParametes, RestfulOptions options, RestfulAsyncCallback callback) throws ServiceException { - + + //This functionality has not been implemented yet + } @Override @@ -127,13 +135,17 @@ public class HttpsRest extends HttpBaseRest { @Override public void asyncDelete(String servicePath, RestfulParametes restParametes, RestfulAsyncCallback callback) throws ServiceException { - + + //This functionality has not been implemented yet + } @Override public void asyncDelete(String servicePath, RestfulParametes restParametes, RestfulOptions options, RestfulAsyncCallback callback) throws ServiceException { + //This functionality has not been implemented yet + } @Override @@ -150,13 +162,17 @@ public class HttpsRest extends HttpBaseRest { @Override public void asyncPatch(String servicePath, RestfulParametes restParametes, RestfulAsyncCallback callback) throws ServiceException { - + + //This functionality has not been implemented yet + } @Override public void asyncPatch(String servicePath, RestfulParametes restParametes, RestfulOptions options, RestfulAsyncCallback callback) throws ServiceException { - + + //This functionality has not been implemented yet + } @Override -- cgit 1.2.3-korg