5712158a21538614ae03bd55fe8adb7f365f91d1
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / parsers / query / UniqueStrategy.java
1 /**
2  * ============LICENSE_START=======================================================
3  * org.onap.aai
4  * ================================================================================
5  * Copyright © 2017-2018 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 package org.onap.aai.parsers.query;
21
22 import org.onap.aai.exceptions.AAIException;
23 import org.onap.aai.introspection.Introspector;
24 import org.onap.aai.introspection.Loader;
25 import org.onap.aai.query.builder.QueryBuilder;
26
27 import javax.ws.rs.core.MultivaluedMap;
28 import java.io.UnsupportedEncodingException;
29 import java.net.URI;
30
31 /**
32  * The Class UniqueStrategy.
33  */
34 public class UniqueStrategy extends QueryParserStrategy {
35
36         
37
38         /**
39          * Instantiates a new unique strategy.
40          *
41          * @param loader the loader
42          * @param builder the builder
43          */
44         public UniqueStrategy(Loader loader, QueryBuilder builder) {
45                 super(loader, builder);
46         }
47         
48         /**
49          * @{inheritDoc}
50          */
51         @Override
52         public QueryParser buildURIParser(URI uri) throws UnsupportedEncodingException, IllegalArgumentException, AAIException {
53                 return new UniqueURIQueryParser(loader, builder, uri);
54         }
55         
56         /**
57          * @{inheritDoc}
58          */
59         @Override
60         public QueryParser buildRelationshipParser(Introspector obj) throws UnsupportedEncodingException, AAIException {
61                 return new UniqueRelationshipQueryParser(loader, builder, obj);
62         }
63
64         /**
65          * @{inheritDoc}
66          */
67         @Override
68         public QueryParser buildURIParser(URI uri, MultivaluedMap<String, String> queryParams)
69                         throws UnsupportedEncodingException, AAIException {
70                 return new LegacyQueryParser(loader, builder, uri, queryParams);
71         }
72
73         /**
74          * @{inheritDoc}
75          */
76         @Override
77         public QueryParser buildObjectNameParser(String objName) {
78                 return new ObjectNameQueryParser(loader, builder, objName);
79         }
80 }