7904f756523e904bf510fec58917ae407cab77ed
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / parsers / query / RelationshipQueryParser.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.parsers.query;
22
23 import java.io.UnsupportedEncodingException;
24 import java.util.ArrayList;
25 import java.util.HashMap;
26 import java.util.List;
27
28 import org.openecomp.aai.exceptions.AAIException;
29 import org.openecomp.aai.introspection.Introspector;
30 import org.openecomp.aai.introspection.IntrospectorFactory;
31 import org.openecomp.aai.introspection.Loader;
32 import org.openecomp.aai.introspection.ModelType;
33 import org.openecomp.aai.parsers.relationship.RelationshipToURI;
34 import org.openecomp.aai.parsers.uri.URIParser;
35 import org.openecomp.aai.query.builder.QueryBuilder;
36 import org.openecomp.aai.serialization.db.EdgeRules;
37 import com.google.common.base.CaseFormat;
38
39 /**
40  * The Class RelationshipQueryParser.
41  */
42 public class RelationshipQueryParser extends LegacyQueryParser {
43
44         private Introspector relationship = null;
45         
46         private ModelType modelType = null;
47         
48         private EdgeRules edgeRules = null;
49         
50         /**
51          * Instantiates a new relationship query parser.
52          *
53          * @param loader the loader
54          * @param queryBuilder the query builder
55          * @param obj the obj
56          * @throws UnsupportedEncodingException the unsupported encoding exception
57          * @throws AAIException the AAI exception
58          */
59         public RelationshipQueryParser(Loader loader, QueryBuilder queryBuilder, Introspector obj) throws UnsupportedEncodingException, AAIException {
60                 super(loader, queryBuilder);
61                 this.relationship = obj;
62                 this.modelType = obj.getModelType();
63                 this.edgeRules = EdgeRules.getInstance();
64                 RelationshipToURI rToUri = new RelationshipToURI(loader, obj);
65                 this.uri = rToUri.getUri();
66                 URIParser parser = new URIParser(loader, uri);
67                 parser.parse(this);
68         }
69         
70 }