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

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


   * @see com.sogou.qadev.service.cynthia.service.DataAccessSession#modifyData(com.sogou.qadev.service.cynthia.bean.Data)
   */
  public Pair<ErrorCode, String> modifyData(Data data)
  {
    UUID id = data.getId();
    DataAccessAction action = null;
   
    Template template = queryTemplate(data.getTemplateId());
    if(template == null)
      return new Pair<ErrorCode, String>(ErrorCode.noSuchTemplateFail, null);
   
View Full Code Here

TOP

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

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.