![JAR search and dependency download from the Maven repository](/logo.png)
com.aeontronix.anypointsdk.cloudhub.CHApplicationWorkers Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of anypoint-sdk Show documentation
Show all versions of anypoint-sdk Show documentation
Anypoint Software Development Toolkit
package com.aeontronix.anypointsdk.cloudhub;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CHApplicationWorkers {
@JsonProperty("amount")
private int amount;
@JsonProperty("remainingOrgWorkers")
private double remainingOrgWorkers;
@JsonProperty("totalOrgWorkers")
private double totalOrgWorkers;
@JsonProperty("type")
private CHApplicationType type;
@JsonProperty("recentStatistics")
private CHApplicationStatistics recentStatistics;
public void setAmount(int amount) {
this.amount = amount;
}
public int getAmount() {
return amount;
}
public void setRemainingOrgWorkers(double remainingOrgWorkers) {
this.remainingOrgWorkers = remainingOrgWorkers;
}
public double getRemainingOrgWorkers() {
return remainingOrgWorkers;
}
public void setTotalOrgWorkers(double totalOrgWorkers) {
this.totalOrgWorkers = totalOrgWorkers;
}
public double getTotalOrgWorkers() {
return totalOrgWorkers;
}
public void setType(CHApplicationType type) {
this.type = type;
}
public CHApplicationType getType() {
return type;
}
public CHApplicationStatistics getRecentStatistics() {
return recentStatistics;
}
public void setRecentStatistics(CHApplicationStatistics recentStatistics) {
this.recentStatistics = recentStatistics;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy