Sonar Fix: RetryPolicy.java 77/74577/1
authorArundathi Patil <arundpil@in.ibm.com>
Wed, 12 Dec 2018 15:17:24 +0000 (20:47 +0530)
committerIBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com>
Wed, 12 Dec 2018 15:17:40 +0000 (20:47 +0530)
Fixed sonar issues/code-smells across this file

Issue-ID: CCSDK-821
Change-Id: Ieac7de3d1bb542394bc876406a4ef0055f4c8ea0
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicy.java

index 5cee077..54c86fe 100644 (file)
@@ -4,6 +4,7 @@
  * ================================================================================
  * Copyright (C) 2017 AT&T Intellectual Property. All rights
  *                     reserved.
+ *     Modifications Copyright © 2018 IBM
  * ================================================================================
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -23,7 +24,12 @@ package org.onap.ccsdk.sli.plugins.restapicall;
 
 public class RetryPolicy {
     private String[] hostnames;
-    private Integer maximumRetries;  
+    private Integer maximumRetries;
+
+    public RetryPolicy(String[] hostnames, Integer maximumRetries){
+        this.hostnames = hostnames;
+        this.maximumRetries = maximumRetries;
+    }
 
     public Integer getMaximumRetries() {
         return maximumRetries;
@@ -51,10 +57,4 @@ public class RetryPolicy {
         return hostnames[position];
     }
 
-    public RetryPolicy(String[] hostnames, Integer maximumRetries){
-        this.hostnames = hostnames;
-        this.maximumRetries = maximumRetries;
-    }
-    
-
 }