7f6bb39f588cbbdda765390355ddc3ccdf2aeeb0
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / introspection / tools / InjectKeysFromURI.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.introspection.tools;
21
22 import org.onap.aai.introspection.Introspector;
23 import org.onap.aai.introspection.Loader;
24 import org.onap.aai.parsers.uri.URIToObject;
25
26 import java.net.URI;
27
28 public class InjectKeysFromURI  implements IssueResolver {
29
30         private URI uri = null;
31         private Loader loader = null;
32         
33         /**
34          * Instantiates a new inject keys from URI.
35          *
36          * @param loader the loader
37          * @param uri the uri
38          */
39         public InjectKeysFromURI(Loader loader, URI uri) {
40                 this.loader = loader;
41                 this.uri = uri;
42         }
43         
44         /**
45          * {@inheritDoc}
46          */
47         @Override
48         public boolean resolveIssue(Issue issue) {
49                 boolean result = false;
50                 Introspector obj = issue.getIntrospector();
51                 if (issue.getType().equals(IssueType.MISSING_KEY_PROP)) {
52                         try {
53                                 URIToObject toObject = new URIToObject(loader, uri);
54                                 Introspector minimumObj = toObject.getEntity();
55                                 if (toObject.getEntityName().equals(obj.getDbName())) {
56                                         obj.setValue(issue.getPropName(), minimumObj.getValue(issue.getPropName()));
57                                         result = true;
58                                 }
59                         } catch (Exception e) {
60                                 //log something probably
61                                 result = false;
62                         }
63                 }
64                 
65                 return result;
66         }
67
68 }