Update REST Samples for required behavior
[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
26 import org.onap.aaf.cadi.Locator;
27 import org.onap.aaf.cadi.LocatorException;
28
29 public class SingleEndpointLocator implements Locator<URI> {
30         private final URI uri;
31         private final static Item item = new Item() {};  
32         
33         public SingleEndpointLocator(final URI uri) {
34                 this.uri = uri;
35         }
36         
37         public SingleEndpointLocator(final String endpoint) throws URISyntaxException {
38                 this.uri = new URI(endpoint);
39         }
40
41         @Override
42         public URI get(Item item) throws LocatorException {
43                 return uri;
44         }
45
46         @Override
47         public boolean hasItems() {
48                 return true;
49         }
50
51         @Override
52         public void invalidate(Item item) throws LocatorException {
53                 // Endpoints cannot be invalidated
54         }
55
56         @Override
57         public Item best() throws LocatorException {
58                 return item;
59         }
60
61         @Override
62         public Item first() throws LocatorException {
63                 return item;
64         }
65
66         @Override
67         public Item next(Item inItem) throws LocatorException {
68                 // only one item
69                 return null;
70         }
71
72         @Override
73         public boolean refresh() {
74                 // Never refreshed
75                 return true;
76         }
77
78         @Override
79         public void destroy() {
80                 // Nothing to do here
81         }
82 }