vre-deploy/src/main/java/org/gcube/portlets/admin/vredeployer/client/charts/SimpleChartModel.java

14 lines
355 B
Java

package org.gcube.portlets.admin.vredeployer.client.charts;
import java.util.List;
import org.gcube.portlets.admin.vredeployer.shared.deployreport.DeployStatus;
import com.extjs.gxt.charts.client.model.ChartModel;
public interface SimpleChartModel {
public ChartModel getChartModel(DeployStatus cloudStatus, List<DeployStatus> singleMachines);
}