41 lines
870 B
Java
41 lines
870 B
Java
package com.ample.esb.bean.amp;
|
|
|
|
import com.thoughtworks.xstream.annotations.XStreamAlias;
|
|
import com.thoughtworks.xstream.annotations.XStreamOmitField;
|
|
|
|
@XStreamAlias("REQUEST")
|
|
public class AmpRequest {
|
|
@XStreamAlias("APPLICATION")
|
|
private String application;
|
|
|
|
@XStreamOmitField
|
|
private String operatorId;
|
|
|
|
@XStreamOmitField
|
|
private String flowUnid;
|
|
|
|
public String getOperatorId() {
|
|
return operatorId;
|
|
}
|
|
|
|
public void setOperatorId(String operatorId) {
|
|
this.operatorId = operatorId;
|
|
}
|
|
|
|
public String getFlowUnid() {
|
|
return flowUnid;
|
|
}
|
|
|
|
public void setFlowUnid(String flowUnid) {
|
|
this.flowUnid = flowUnid;
|
|
}
|
|
|
|
public String getApplication() {
|
|
return application;
|
|
}
|
|
|
|
public void setApplication(String application) {
|
|
this.application = application;
|
|
}
|
|
}
|