Examples of HealthSummaryResponse


Examples of com.betfair.cougar.health.service.v3.to.HealthSummaryResponse

        this.monitorRegistry = cc.getMonitorRegistry();
  }
 
  @Override
  public HealthSummaryResponse isHealthy(final RequestContext ctx, TimeConstraints timeConstraints) throws HealthException {
    HealthSummaryResponse response = new HealthSummaryResponse();
   
    if (isSystemInService()) {
      response.setHealthy(getHealth());
    } else {
      response.setHealthy(RestrictedHealthStatus.FAIL);

    }
    return response;
  }
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.