aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/MSOCommonBPMN/src/main/java/org/openecomp/mso/client/aai/entities/CustomQuery.java
blob: fb37899e0d007ca4d13492a2d33e319758b18cbc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package org.openecomp.mso.client.aai.entities;

import java.io.UnsupportedEncodingException;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonInclude;


@JsonInclude(JsonInclude.Include.NON_NULL) 
public class CustomQuery {
	
	List<String> start;
	
	public String getGremlin() {
		return gremlin;
	}

	public void setGremlin(String gremlin) {
		this.gremlin = gremlin;
	}
	String query;
	String gremlin;
	
	public CustomQuery(List<String>start, String query){
		this.start=start;
		this.query= "query/" + query;
	}
	
	public CustomQuery(String gremlin) throws UnsupportedEncodingException{
		this.gremlin=gremlin;
	}
	
	public List<String> getStart() {
		return start;
	}

	public void setStart(List<String> start) {
		this.start = start;
	}

	public String getQuery() {
		return query;
	}

	public void setQuery(String query) {
		this.query = query;
	}
}