Package com.defaultcompany.external.model.stdmsg

Examples of com.defaultcompany.external.model.stdmsg.ReturnMsg


  private String makeReturnMsg(String status, List<TaskInfo> taskInfoList) {
    XStream xstream = new XStream();
    xstream.alias("ReturnMsg", ReturnMsg.class);
    xstream.alias("TaskInfo", TaskInfo.class);
   
    ReturnMsg returnMsg = new ReturnMsg();
    returnMsg.setStatus(status);
    if (taskInfoList != null) {
      returnMsg.setTaskInfoList(taskInfoList);
    } else {
      returnMsg.setTaskInfoList(new ArrayList<TaskInfo>());
    }
   
    return xstream.toXML(returnMsg);
  }
View Full Code Here

TOP

Related Classes of com.defaultcompany.external.model.stdmsg.ReturnMsg

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.