fab8d64e09bd508d9ebdac58d3c0cdf0764e5337
[so.git] / bpmn / MSOCommonBPMN / src / main / java / org / openecomp / mso / client / aai / entities / CustomQuery.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
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.mso.client.aai.entities;
22
23 import java.io.UnsupportedEncodingException;
24 import java.util.List;
25
26 import com.fasterxml.jackson.annotation.JsonInclude;
27
28
29 @JsonInclude(JsonInclude.Include.NON_NULL) 
30 public class CustomQuery {
31         
32         List<String> start;
33         
34         public String getGremlin() {
35                 return gremlin;
36         }
37
38         public void setGremlin(String gremlin) {
39                 this.gremlin = gremlin;
40         }
41         String query;
42         String gremlin;
43         
44         public CustomQuery(List<String>start, String query){
45                 this.start=start;
46                 this.query= "query/" + query;
47         }
48         
49         public CustomQuery(String gremlin) throws UnsupportedEncodingException{
50                 this.gremlin=gremlin;
51         }
52         
53         public List<String> getStart() {
54                 return start;
55         }
56
57         public void setStart(List<String> start) {
58                 this.start = start;
59         }
60
61         public String getQuery() {
62                 return query;
63         }
64
65         public void setQuery(String query) {
66                 this.query = query;
67         }
68 }