summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/restmodels/ruleeditor/ApplyFilterRequest.java
blob: 1c08a731f34ac59a7e89b86e5c294f7b0c288abe (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
package org.onap.sdc.dcae.composition.restmodels.ruleeditor;


public class ApplyFilterRequest extends TranslateRequest {

	private String version;
	private String eventType;
	private BaseCondition filter;

	public String getVersion() {
		return version;
	}

	public void setVersion(String version) {
		this.version = version;
	}

	public String getEventType() {
		return eventType;
	}

	public void setEventType(String eventType) {
		this.eventType = eventType;
	}

	public BaseCondition getFilter() {
		return filter;
	}

	public void setFilter(BaseCondition filter) {
		this.filter = filter;
	}

	public ApplyFilterRequest(String vfcmtUuid, String dcaeCompLabel, String nid, String configParam, String notifyId, String entryPhase, String publishPhase, BaseCondition filter) {
		super(vfcmtUuid, dcaeCompLabel, nid, configParam, notifyId, entryPhase, publishPhase);
		this.filter = filter;
	}

	ApplyFilterRequest(){}
}