Package com.taobao.zeus.web.platform.client.module.word.model

Examples of com.taobao.zeus.web.platform.client.module.word.model.DebugHistoryModel


      ret.add(convert(his));
    return ret;
  }

  private DebugHistoryModel convert(DebugHistory his) {
    DebugHistoryModel ret = new DebugHistoryModel();
    ret.setEndTime(his.getEndTime());
    ret.setExecuteHost(his.getExecuteHost());
    ret.setFileId(his.getFileId());
    ret.setGmtCreate(his.getGmtCreate());
    ret.setGmtModified(his.getGmtModified());
    ret.setId(his.getId());
    if (his.getJobRunType() != null)
      ret.setJobRunType(DebugHistoryModel.JobRunType.parser(his
          .getJobRunType().toString()));
    ret.setLog(his.getLog().getContent());
    ret.setScript(his.getScript());
    ret.setStartTime(his.getStartTime());
    if (his.getStatus() != null)
      ret.setStatus(DebugHistoryModel.Status.parser(his.getStatus()
          .getId()));
    return ret;
  }
View Full Code Here

TOP

Related Classes of com.taobao.zeus.web.platform.client.module.word.model.DebugHistoryModel

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.