15a8852a664152074cb025dd2fccffd3e538fed6
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / domain / model / AAIResources.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-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 package org.onap.aai.domain.model;
21
22 import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
23
24 import java.util.HashMap;
25
26 public class AAIResources {
27         
28         private DynamicJAXBContext jaxbContext;
29         
30         private HashMap<String, AAIResource> aaiResources;
31         private HashMap<String, AAIResource> resourceLookup;
32         
33         
34         /**
35          * Gets the aai resources.
36          *
37          * @return the aai resources
38          */
39         public HashMap<String, AAIResource> getAaiResources() {
40                 if (aaiResources == null) { 
41                         aaiResources = new HashMap<String, AAIResource>();
42                 }
43                 return aaiResources;
44         }
45
46         /**
47          * Gets the jaxb context.
48          *
49          * @return the jaxb context
50          */
51         public DynamicJAXBContext getJaxbContext() {
52                 return jaxbContext;
53         }
54
55         /**
56          * Sets the jaxb context.
57          *
58          * @param jaxbContext the new jaxb context
59          */
60         public void setJaxbContext(DynamicJAXBContext jaxbContext) {
61                 this.jaxbContext = jaxbContext;
62         }
63
64         /**
65          * Gets the resource lookup.
66          *
67          * @return the resource lookup
68          */
69         public HashMap<String, AAIResource> getResourceLookup() {
70                 if (resourceLookup == null) { 
71                         resourceLookup = new HashMap<String, AAIResource>();
72                 }
73                 return resourceLookup;
74         }
75
76         /**
77          * Sets the resource lookup.
78          *
79          * @param resourceLookup the resource lookup
80          */
81         public void setResourceLookup(HashMap<String, AAIResource> resourceLookup) {
82                 this.resourceLookup = resourceLookup;
83         }
84         
85 }