Examples of ActivityDTO


Examples of org.sonar.core.activity.db.ActivityDto

      saveActiveRuleChange(session, ruleChange, currentAuthor, currentTimeStamp);
    }
  }

  private void saveActiveRuleChange(DbSession session, ActiveRuleChange ruleChange, String author, Date currentTimeStamp) {
    ActivityDto activity = ActivityDto.createFor(ruleChange);
    activity.setType(Activity.Type.QPROFILE);
    activity.setAuthor(author);
    activity.setCreatedAt(currentTimeStamp);
    dao.insert(session, activity);
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.