[AAI] Fix doc config files
[aai/aai-common.git] / aai-core / src / main / java / org / onap / aai / restcore / search / GremlinGroovyShell.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
21 package org.onap.aai.restcore.search;
22
23 import groovy.lang.Binding;
24 import groovy.lang.Script;
25
26 import java.util.Map;
27
28 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversal;
29 import org.apache.tinkerpop.gremlin.process.traversal.dsl.graph.GraphTraversalSource;
30 import org.onap.aai.serialization.engines.QueryStyle;
31 import org.onap.aai.serialization.engines.TransactionalGraphEngine;
32
33 /**
34  * Creates and returns a groovy shell with the
35  * configuration to statically import graph classes
36  *
37  */
38 public class GremlinGroovyShell extends AAIAbstractGroovyShell {
39
40     public GremlinGroovyShell() {
41         super();
42     }
43
44     /**
45      * {@inheritDoc}
46      */
47     @Override
48     public GraphTraversal<?, ?> executeTraversal(String traversal, Map<String, Object> params) {
49         Binding binding = new Binding(params);
50         Script script = shell.parse(traversal);
51         script.setBinding(binding);
52         return (GraphTraversal<?, ?>) script.run();
53     }
54
55     /**
56      * @throws UnsupportedOperationException
57      */
58     @Override
59     public String executeTraversal(TransactionalGraphEngine engine, String traversal, Map<String, Object> params) {
60         throw new UnsupportedOperationException();
61     }
62
63     @Override
64     public String executeTraversal(TransactionalGraphEngine engine, String traversal, Map<String, Object> params, QueryStyle style, GraphTraversalSource source) {
65         throw new UnsupportedOperationException();
66     }
67 }