6f8570888ae5df6892e07a4ae12c12191d7d0d91
[aai/aai-common.git] / aai-core / src / main / java / org / openecomp / aai / parsers / query / TraversalStrategy.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.net.URI;
25
26 import javax.ws.rs.core.MultivaluedMap;
27
28 import org.openecomp.aai.exceptions.AAIException;
29 import org.openecomp.aai.introspection.Introspector;
30 import org.openecomp.aai.introspection.Loader;
31 import org.openecomp.aai.query.builder.QueryBuilder;
32
33 /**
34  * The Class TraversalStrategy.
35  */
36 public class TraversalStrategy extends QueryParserStrategy {
37
38
39         /**
40          * Instantiates a new traversal strategy.
41          *
42          * @param loader the loader
43          * @param builder the builder
44          */
45         public TraversalStrategy(Loader loader, QueryBuilder builder) {
46                 super(loader, builder);
47         }
48         
49         /**
50          * @{inheritDoc}
51          */
52         @Override
53         public QueryParser buildURIParser(URI uri) throws UnsupportedEncodingException, AAIException {
54                 return new LegacyQueryParser(loader, builder, uri);
55         }
56         
57         /**
58          * @{inheritDoc}
59          */
60         @Override
61         public QueryParser buildRelationshipParser(Introspector obj) throws UnsupportedEncodingException, AAIException {
62                 return new RelationshipQueryParser(loader, builder, obj);
63         }
64
65         /**
66          * @{inheritDoc}
67          */
68         @Override
69         public QueryParser buildURIParser(URI uri, MultivaluedMap<String, String> queryParams)
70                         throws UnsupportedEncodingException, AAIException {
71                 return new LegacyQueryParser(loader, builder, uri, queryParams);
72         }
73
74         /**
75          * @{inheritDoc}
76          */
77         @Override
78         public QueryParser buildObjectNameParser(String objName) {
79                 return new ObjectNameQueryParser(loader, builder, objName);
80         }
81
82
83 }