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