Package com.sogou.qadev.service.cynthia.bean

Examples of com.sogou.qadev.service.cynthia.bean.ChangeLog


        }
      }
    }
   
   
    ChangeLog changeLog = new ChangeLogImpl(
        DataAccessFactory.getInstance().createUUID(current.get("dataId")),
        current.get("logcreateUser") == null ? "" :current.get("logcreateUser").toString(),
        Timestamp.valueOf(current.get("logcreateTime")),
        DataAccessFactory.getInstance().createUUID(current.get("logActionId")),
        current.get("logActionComment") == null ? "" :current.get("logActionComment").toString(),
View Full Code Here


    Data data = queryData(dataId);
    if (data == null) {
      return false;
    }
    try {
      ChangeLog changeLog = data.getChangeLogs()[logIndex-1];
      changeLog.setActionComment(logContent);
      updateCache(DataAccessAction.update, dataId.getValue(), data);
      return new LogAccessSessionMySQL().updateLogComment(dataId, data.getTemplateId(), logIndex, logContent);
    } catch (Exception e) {
      e.printStackTrace();
      return false;
View Full Code Here

TOP

Related Classes of com.sogou.qadev.service.cynthia.bean.ChangeLog

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.