summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/onap/sdc/dcae/composition/restmodels/ruleeditor/ImportPhaseRequest.java
blob: 445f0811f775fc024c1d563bb794a4f7a12bfe45 (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
49
50
51
52
package org.onap.sdc.dcae.composition.restmodels.ruleeditor;

public class ImportPhaseRequest extends RuleEditorRequest {

	private String groupId;
	private String phase;
	private String version;
	private String eventType;
	private MappingRulesResponse payload;

	public String getGroupId() {
		return groupId;
	}

	public void setGroupId(String groupId) {
		this.groupId = groupId;
	}

	public String getPhase() {
		return phase;
	}

	public void setPhase(String phase) {
		this.phase = phase;
	}

	public MappingRulesResponse getPayload() {
		return payload;
	}

	public void setPayload(MappingRulesResponse payload) {
		this.payload = payload;
	}


	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;
	}

}