Examples of ReplyToChangeSender


Examples of com.google.gerrit.server.mail.ReplyToChangeSender

    new ApprovalsUtil(db, null).syncChangeStatus(change);

    // Email the reviewers
    try {
      final ReplyToChangeSender cm = senderFactory.create(change);
      cm.setFrom(user.getAccountId());
      cm.setChangeMessage(cmsg);
      cm.send();
    } catch (Exception e) {
      log.error("Cannot email update for change " + change.getChangeId(), e);
    }
  }
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.