Package com.elastisys.scale.commons.net.smtp.alerter

Examples of com.elastisys.scale.commons.net.smtp.alerter.AlertSeverity


   * notifying clients of liveness state changes.
   *
   * @return The corresponding {@link Alert}.
   */
  public Alert toAlert() {
    AlertSeverity severity;
    if (asList(UNHEALTHY, UNKNOWN).contains(this.newState)) {
      // only transitions to -> UNHEALTHY/UNKNOWN are warning signs
      severity = AlertSeverity.WARN;
    } else {
      if (this.previousState == UNHEALTHY && this.newState == LIVE) {
View Full Code Here

TOP

Related Classes of com.elastisys.scale.commons.net.smtp.alerter.AlertSeverity

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.