Update DCAE Startup Info
[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.LocatorException;
28
29 public class SingleEndpointLocator implements SizedLocator<URI> {
30     private final URI uri;
31     private final static Item item = new Item() {};
32     private Date noRetryUntil;
33
34     public SingleEndpointLocator(final URI uri) {
35         this.uri = uri;
36     }
37
38     public SingleEndpointLocator(final String endpoint) throws LocatorException {
39         try {
40             this.uri = new URI(endpoint);
41         } catch (URISyntaxException e) {
42             throw new LocatorException(e);
43         }
44     }
45
46     @Override
47     public URI get(Item item) throws LocatorException {
48         return uri;
49     }
50
51     @Override
52     public boolean hasItems() {
53         if (noRetryUntil!=null) {
54             if (new Date().after(noRetryUntil)) {
55                 noRetryUntil = null;
56             } else {
57                 return false;
58             }
59         }
60         return true;
61     }
62
63     @Override
64     public void invalidate(Item item) throws LocatorException {
65         // one minute timeout, because there is no other item
66         noRetryUntil = new Date(System.currentTimeMillis()+60000);
67     }
68
69     @Override
70     public Item best() throws LocatorException {
71         return item;
72     }
73
74     @Override
75     public Item first() throws LocatorException {
76         return item;
77     }
78
79     @Override
80     public Item next(Item inItem) throws LocatorException {
81         // only one item
82         return null;
83     }
84
85     @Override
86     public boolean refresh() {
87         // Never refreshed
88         return true;
89     }
90
91     @Override
92     public int size() {
93         return 1;
94     }
95
96     @Override
97     public void destroy() {
98         // Nothing to do here
99     }
100 }