69334a969ea562df8aa9ab6a5256855dda60a6d7
[ccsdk/sli/plugins.git] / restapi-call-node / provider / src / main / java / org / onap / ccsdk / sli / plugins / restapicall / RetryPolicy.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * openECOMP : SDN-C
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights
6  *                      reserved.
7  * ================================================================================
8  * Licensed under the Apache License, Version 2.0 (the "License");
9  * you may not use this file except in compliance with the License.
10  * You may obtain a copy of the License at
11  * 
12  *      http://www.apache.org/licenses/LICENSE-2.0
13  * 
14  * Unless required by applicable law or agreed to in writing, software
15  * distributed under the License is distributed on an "AS IS" BASIS,
16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17  * See the License for the specific language governing permissions and
18  * limitations under the License.
19  * ============LICENSE_END=========================================================
20  */
21
22 package org.onap.ccsdk.sli.plugins.restapicall;
23
24 public class RetryPolicy {
25     private String[] hostnames;
26     private Integer maximumRetries;  
27
28     public Integer getMaximumRetries() {
29         return maximumRetries;
30     }
31     
32     public String getNextHostName(String uri) throws RetryException {
33         Integer position = null;
34
35         for (int i = 0; i < hostnames.length; i++) {
36             if (uri.contains(hostnames[i])) {
37                 position = i;
38                 break;
39             }
40         }
41
42         if(position == null){
43             throw new RetryException("No match found for the provided uri[" + uri + "] so the next host name could not be retreived");
44         }
45         position++;
46
47         if (position > hostnames.length - 1) {
48             position = 0;
49         }
50         return hostnames[position];
51     }
52
53     public RetryPolicy(String[] hostnames, Integer maximumRetries){
54         this.hostnames = hostnames;
55         this.maximumRetries = maximumRetries;
56     }
57     
58
59 }