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