Commit 09225d94 authored by Quxl's avatar Quxl

x

parent daee46a6
......@@ -10,6 +10,7 @@ import javax.xml.bind.annotation.XmlType;
@XmlRootElement(name = "DELETED_DOCUMENTS")
public class DELETED_DOCUMENTS {
String MSGID;
String TARGET_SYSTEM;
String DOCTYPE;
String DOCNUMBER;
......@@ -65,4 +66,12 @@ public class DELETED_DOCUMENTS {
SOLD_TO = sOLD_TO;
}
public String getMSGID() {
return MSGID;
}
public void setMSGID(String mSGID) {
MSGID = mSGID;
}
}
\ No newline at end of file
......@@ -33,6 +33,7 @@ public class DNDeletionServiceImpl implements DNDeletionService {
Date now = new Date();
String dateString = DateUtil.formatDate(now, DateUtil.FMT_DATE);
Map<String, Object> map = new HashMap<String, Object>();
map.put("MSGID", DELETED_DOCUMENTS.getMSGID());
map.put("TARGET_SYSTEM", DELETED_DOCUMENTS.getTARGET_SYSTEM());
map.put("DOCTYPE", DELETED_DOCUMENTS.getDOCTYPE());
map.put("DOCNUMBER", DELETED_DOCUMENTS.getDOCNUMBER());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment