AAI-common sonar fixes
[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
21 package org.onap.aai.domain.model;
22
23 import org.eclipse.persistence.jaxb.dynamic.DynamicJAXBContext;
24
25 import java.util.HashMap;
26 import java.util.Map;
27
28 public class AAIResources {
29
30     private DynamicJAXBContext jaxbContext;
31
32     private Map<String, AAIResource> resources;
33     private Map<String, AAIResource> resourceLookup;
34
35     /**
36      * Gets the aai resources.
37      *
38      * @return the aai resources
39      */
40     public Map<String, AAIResource> getAaiResources() {
41         if (resources == null) {
42             resources = new HashMap<>();
43         }
44         return resources;
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 Map<String, AAIResource> getResourceLookup() {
71         if (resourceLookup == null) {
72             resourceLookup = new HashMap<>();
73         }
74         return resourceLookup;
75     }
76
77     /**
78      * Sets the resource lookup.
79      *
80      * @param resourceLookup the resource lookup
81      */
82     public void setResourceLookup(Map<String, AAIResource> resourceLookup) {
83         this.resourceLookup = resourceLookup;
84     }
85
86 }