summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThamlurRaju <thamlurraju468@gmail.com>2018-08-21 12:17:58 +0530
committerThamlurRaju <thamlurraju468@gmail.com>2018-08-21 12:17:58 +0530
commitb78222c36437f03cfdfef4d95b5ae7ec5517565f (patch)
tree3adf66edc5add05f13f43aaef31f08e27c587738
parentc765483a363af13124661dc891a8f4917c733844 (diff)
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 <thamlurraju468@gmail.com>
-rw-r--r--ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java28
1 files changed, 22 insertions, 6 deletions
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