Merge "Removed unused methods injectSNIROCallbacks() according to comments by maintainer"
[so.git] / common / src / main / java / org / onap / so / client / aai / AAIClient.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2017 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.so.client.aai;
22
23 import java.net.URI;
24 import javax.ws.rs.NotFoundException;
25 import javax.ws.rs.core.UriBuilder;
26 import org.onap.so.client.RestClient;
27 import org.onap.so.client.graphinventory.GraphInventoryClient;
28 import org.onap.so.client.graphinventory.entities.uri.GraphInventoryUri;
29 import org.onap.so.client.graphinventory.exceptions.GraphInventoryUriComputationException;
30 import org.slf4j.Logger;
31 import org.slf4j.LoggerFactory;
32
33 public class AAIClient extends GraphInventoryClient {
34
35     private static final String AAI_ROOT = "/aai";
36     protected static Logger logger = LoggerFactory.getLogger(AAIClient.class);
37     protected AAIVersion version;
38
39     protected AAIClient() {
40         super(AAIProperties.class);
41     }
42
43     protected AAIClient(AAIVersion version) {
44         super(AAIProperties.class);
45         this.version = version;
46     }
47
48     @Override
49     protected URI constructPath(GraphInventoryUri uri) {
50
51         return UriBuilder.fromUri(AAI_ROOT + "/" + this.getVersion().toString() + uri.build().toString()).build();
52     }
53
54     @Override
55     public RestClient createClient(GraphInventoryUri uri) {
56         try {
57             return new AAIRestClient(getRestProperties(), constructPath(uri));
58         } catch (GraphInventoryUriComputationException | NotFoundException e) {
59             logger.debug("failed to construct A&AI uri", e);
60             throw e;
61         }
62     }
63
64     @Override
65     public AAIVersion getVersion() {
66         if (version == null) {
67             return this.<AAIProperties>getRestProperties().getDefaultVersion();
68         } else {
69             return this.version;
70         }
71     }
72
73
74     @Override
75     public String getGraphDBName() {
76         return "A&AI";
77     }
78 }