23bcd4ad9323a8291bea9d72dfde988a14239a45
[aaf/authz.git] / cadi / client / src / main / java / org / onap / aaf / cadi / locator / SingleEndpointLocator.java
1 /**
2  * ============LICENSE_START====================================================
3  * org.onap.aaf
4  * ===========================================================================
5  * Copyright (c) 2018 AT&T Intellectual Property. All rights reserved.
6  * ===========================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  * 
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  * 
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END====================================================
19  *
20  */
21 package org.onap.aaf.cadi.locator;
22
23 import java.net.URI;
24 import java.net.URISyntaxException;
25 import java.util.Date;
26
27 import org.onap.aaf.cadi.Locator;
28 import org.onap.aaf.cadi.LocatorException;
29
30 public class SingleEndpointLocator implements Locator<URI> {
31         private final URI uri;
32         private final static Item item = new Item() {};  
33         private Date noRetryUntil;
34         
35         public SingleEndpointLocator(final URI uri) {
36                 this.uri = uri;
37         }
38         
39         public SingleEndpointLocator(final String endpoint) throws URISyntaxException {
40                 this.uri = new URI(endpoint);
41         }
42
43         @Override
44         public URI get(Item item) throws LocatorException {
45                 return uri;
46         }
47
48         @Override
49         public boolean hasItems() {
50                 if(noRetryUntil!=null) {
51                         if(new Date().after(noRetryUntil)) {
52                                 noRetryUntil = null;
53                         } else {
54                                 return false;
55                         }
56                 }
57                 return true;
58         }
59
60         @Override
61         public void invalidate(Item item) throws LocatorException {
62                 // one minute timeout, because there is no other item
63                 noRetryUntil = new Date(System.currentTimeMillis()+60000); 
64         }
65
66         @Override
67         public Item best() throws LocatorException {
68                 return item;
69         }
70
71         @Override
72         public Item first() throws LocatorException {
73                 return item;
74         }
75
76         @Override
77         public Item next(Item inItem) throws LocatorException {
78                 // only one item
79                 return null;
80         }
81
82         @Override
83         public boolean refresh() {
84                 // Never refreshed
85                 return true;
86         }
87
88         @Override
89         public void destroy() {
90                 // Nothing to do here
91         }
92 }