fixing major Sonar Issue 77/61477/1
authorThamlurRaju <thamlurraju468@gmail.com>
Tue, 21 Aug 2018 06:47:58 +0000 (12:17 +0530)
committerThamlurRaju <thamlurraju468@gmail.com>
Tue, 21 Aug 2018 06:47:58 +0000 (12:17 +0530)
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>
ResmanagementService/service/src/main/java/org/onap/vfc/nfvo/resmanagement/common/util/restclient/HttpsRest.java

index 89fe850..cc64ca1 100644 (file)
@@ -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