diff options
author | Arundathi Patil <arundpil@in.ibm.com> | 2018-12-12 20:47:24 +0530 |
---|---|---|
committer | IBM602-PC0F1E3C\Arundathi <arundpil@in.ibm.com> | 2018-12-12 20:47:40 +0530 |
commit | 66c306fc34c622574f89ff753c9489163c74475c (patch) | |
tree | d923151ad63d9b7941d81f2a30dc8463c8ed2919 /restapi-call-node/provider/src | |
parent | 77a6c5f93ce5928dd3a0eb0e71a9120c6603fec6 (diff) |
Sonar Fix: RetryPolicy.java
Fixed sonar issues/code-smells across this file
Issue-ID: CCSDK-821
Change-Id: Ieac7de3d1bb542394bc876406a4ef0055f4c8ea0
Signed-off-by: Arundathi Patil <arundpil@in.ibm.com>
Diffstat (limited to 'restapi-call-node/provider/src')
-rw-r--r-- | restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicy.java | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicy.java b/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicy.java index 5cee0779..54c86fef 100644 --- a/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicy.java +++ b/restapi-call-node/provider/src/main/java/org/onap/ccsdk/sli/plugins/restapicall/RetryPolicy.java @@ -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; - } - - } |