[AAI-178 Amsterdam] Make Edge Properties to be
[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 org.openecomp.aai.exceptions.AAIException;
24 import org.openecomp.aai.introspection.Introspector;
25 import org.openecomp.aai.introspection.Loader;
26 import org.openecomp.aai.introspection.ModelType;
27 import org.openecomp.aai.parsers.relationship.RelationshipToURI;
28 import org.openecomp.aai.parsers.uri.URIParser;
29 import org.openecomp.aai.query.builder.QueryBuilder;
30 import org.openecomp.aai.serialization.db.EdgeRules;
31
32 import java.io.UnsupportedEncodingException;
33
34 /**
35  * The Class RelationshipQueryParser.
36  */
37 public class RelationshipQueryParser extends LegacyQueryParser {
38
39         private Introspector relationship = null;
40         
41         private ModelType modelType = null;
42         
43         private EdgeRules edgeRules = null;
44         
45         /**
46          * Instantiates a new relationship query parser.
47          *
48          * @param loader the loader
49          * @param queryBuilder the query builder
50          * @param obj the obj
51          * @throws UnsupportedEncodingException the unsupported encoding exception
52          * @throws AAIException the AAI exception
53          */
54         public RelationshipQueryParser(Loader loader, QueryBuilder queryBuilder, Introspector obj) throws UnsupportedEncodingException, AAIException {
55                 super(loader, queryBuilder);
56                 this.relationship = obj;
57                 this.modelType = obj.getModelType();
58                 this.edgeRules = EdgeRules.getInstance();
59                 RelationshipToURI rToUri = new RelationshipToURI(loader, obj);
60                 this.uri = rToUri.getUri();
61                 URIParser parser = new URIParser(loader, uri);
62                 parser.parse(this);
63         }
64         
65 }