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


public class TranslateRequest extends RuleEditorRequest {

	private String notifyId;
	//US420764 support phases configuration
	private String entryPhase;
	private String publishPhase;


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

	TranslateRequest(){}

	public String getNotifyId() {
		return notifyId;
	}

	public void setNotifyId(String notifyId) {
		this.notifyId = notifyId;
	}

	public String getEntryPhase() {
		return entryPhase;
	}

	public void setEntryPhase(String entryPhase) {
		this.entryPhase = entryPhase;
	}

	public String getPublishPhase() {
		return publishPhase;
	}

	public void setPublishPhase(String publishPhase) {
		this.publishPhase = publishPhase;
	}
}