aboutsummaryrefslogtreecommitdiffstats
path: root/common/src/main/java/org/onap/so/client/aai/entities/DSLQuery.java
blob: 1d079ed12b3869570ebb3a70e73e2e2abb151c8d (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
package org.onap.so.client.aai.entities;

import com.fasterxml.jackson.annotation.JsonInclude;

@JsonInclude(JsonInclude.Include.NON_NULL)
public class DSLQuery {

	private String dsl;

	public DSLQuery() {
		
	}
	
	public DSLQuery(String dsl) {
		this.dsl = dsl;
	}
	
	public String getDsl() {
		return dsl;
	}

	public void setDsl(String dsl) {
		this.dsl = dsl;
	}
	
	
}