rename package for external use
[so.git] / graph-inventory / aai-client / src / main / java / org / onap / aaiclient / client / aai / AAIResourcesClient.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.aaiclient.client.aai;
22
23 import java.util.Optional;
24 import org.onap.aai.domain.yang.Relationship;
25 import org.onap.aaiclient.client.aai.entities.AAIEdgeLabel;
26 import org.onap.aaiclient.client.aai.entities.AAIResultWrapper;
27 import org.onap.aaiclient.client.aai.entities.uri.AAIBaseResourceUri;
28 import org.onap.aaiclient.client.aai.entities.uri.AAIPluralResourceUri;
29 import org.onap.aaiclient.client.aai.entities.uri.AAIResourceUri;
30 import org.onap.aaiclient.client.graphinventory.GraphInventoryResourcesClient;
31 import org.onap.aaiclient.client.graphinventory.entities.GraphInventoryEdgeLabel;
32
33 public class AAIResourcesClient extends
34         GraphInventoryResourcesClient<AAIResourcesClient, AAIBaseResourceUri<?, ?>, AAIResourceUri, AAIPluralResourceUri, AAIEdgeLabel, AAIResultWrapper, AAITransactionalClient, AAISingleTransactionClient> {
35
36     private AAIClient aaiClient;
37
38     public AAIResourcesClient() {
39         super(new AAIClient());
40         aaiClient = (AAIClient) super.client;
41     }
42
43     public AAIResourcesClient(AAIVersion version) {
44         super(new AAIClient(version));
45         aaiClient = (AAIClient) super.client;
46     }
47
48     public AAIResourcesClient(AAIClient client) {
49         super(client);
50         aaiClient = (AAIClient) super.client;
51     }
52
53     @Override
54     public AAIResultWrapper createWrapper(String json) {
55         return new AAIResultWrapper(json);
56     }
57
58     @Override
59     public AAIResultWrapper createWrapper(Object obj) {
60         return new AAIResultWrapper(obj);
61     }
62
63     @Override
64     public AAITransactionalClient beginTransaction() {
65         return new AAITransactionalClient(this, aaiClient);
66     }
67
68     @Override
69     public AAISingleTransactionClient beginSingleTransaction() {
70         return new AAISingleTransactionClient(this, aaiClient);
71     }
72
73     @Override
74     protected Relationship buildRelationship(AAIResourceUri uri) {
75         return super.buildRelationship(uri, Optional.empty());
76     }
77
78     @Override
79     protected Relationship buildRelationship(AAIResourceUri uri, GraphInventoryEdgeLabel label) {
80         return super.buildRelationship(uri, Optional.of(label));
81     }
82
83     @Override
84     protected Relationship buildRelationship(AAIResourceUri uri, Optional<GraphInventoryEdgeLabel> label) {
85         return super.buildRelationship(uri, label);
86     }
87
88 }