f109a62f3545d67be84e5d49cfdf31b091509883
[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 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  * ECOMP is a trademark and service mark of AT&T Intellectual Property.
21  */
22 package org.onap.aai.introspection.tools;
23
24 import com.att.eelf.configuration.EELFLogger;
25 import com.att.eelf.configuration.EELFManager;
26 import org.onap.aai.introspection.Introspector;
27 import org.onap.aai.introspection.Loader;
28 import org.onap.aai.parsers.uri.URIToObject;
29
30 import java.net.URI;
31
32 public class InjectKeysFromURI  implements IssueResolver {
33         private static final EELFLogger LOGGER = EELFManager.getInstance().getLogger(InjectKeysFromURI.class);
34
35         private URI uri = null;
36         private Loader loader = null;
37         
38         /**
39          * Instantiates a new inject keys from URI.
40          *
41          * @param loader the loader
42          * @param uri the uri
43          */
44         public InjectKeysFromURI(Loader loader, URI uri) {
45                 this.loader = loader;
46                 this.uri = uri;
47         }
48         
49         /**
50          * {@inheritDoc}
51          */
52         @Override
53         public boolean resolveIssue(Issue issue) {
54                 boolean result = false;
55                 Introspector obj = issue.getIntrospector();
56                 if (issue.getType().equals(IssueType.MISSING_KEY_PROP)) {
57                         try {
58                                 URIToObject toObject = new URIToObject(loader, uri);
59                                 Introspector minimumObj = toObject.getEntity();
60                                 if (toObject.getEntityName().equals(obj.getDbName())) {
61                                         obj.setValue(issue.getPropName(), minimumObj.getValue(issue.getPropName()));
62                                         result = true;
63                                 }
64                         } catch (Exception e) {
65                 LOGGER.error(e.getMessage(),e);
66                                 result = false;
67                         }
68                 }
69                 
70                 return result;
71         }
72
73 }