blob: 60853e405f81efedac2f34821ab9f50705f9c1ef [file] [log] [blame]
/**
******************************************************************************
* Copyright © 2018 PTA GmbH.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
*
* http://www.eclipse.org/legal/epl-v10.html
*
******************************************************************************
*/
package org.eclipse.openk.mics.home.controller;
import org.eclipse.openk.mics.home.common.HttpStatusException;
import org.eclipse.openk.mics.home.communication.RestServiceWrapper;
public class CentralProxy {
private final String url;
private final RestServiceWrapper restServiceWrapper;
public CentralProxy( String url ) {
this.url = url;
this.restServiceWrapper = new RestServiceWrapper( url, false );
}
public String getServerDistribution( String clusterName ) throws HttpStatusException {
return restServiceWrapper.performGetRequest(url + "/serviceDistribution/" + clusterName );
}
public String getHealthState( String healthStateExtraPath, String protocol, String host, String port ) throws HttpStatusException {
return restServiceWrapper.performGetRequest(protocol + "://" + host + ":" + port + "/" + healthStateExtraPath );
}
}