com.capitalone.dashboard.request.InfraStructureRequest Maven / Gradle / Ivy
package com.capitalone.dashboard.request;
import com.capitalone.dashboard.model.CollectorType;
import org.bson.types.ObjectId;
import javax.validation.constraints.NotNull;
public class InfraStructureRequest extends BaseRequest {
@NotNull
private ObjectId componentId;
private Integer max;
private Integer numberOfDays;
private Long dateBegins;
private Long dateEnds;
private CollectorType type;
private ObjectId collectorItemId;
public ObjectId getComponentId() {
return componentId;
}
public void setComponentId(ObjectId componentId) {
this.componentId = componentId;
}
public Integer getMax() {
return max;
}
public void setMax(Integer max) {
this.max = max;
}
public Integer getNumberOfDays() {
return numberOfDays;
}
public void setNumberOfDays(Integer numberOfDays) {
this.numberOfDays = numberOfDays;
}
public Long getDateBegins() {
return dateBegins;
}
public void setDateBegins(Long dateBegins) {
this.dateBegins = dateBegins;
}
public Long getDateEnds() {
return dateEnds;
}
public void setDateEnds(Long dateEnds) {
this.dateEnds = dateEnds;
}
public CollectorType getType() {
return type;
}
public void setType(CollectorType type) {
this.type = type;
}
public ObjectId getCollectorItemId() {
return collectorItemId;
}
public void setCollectorItemId(ObjectId collectorItemId) {
this.collectorItemId = collectorItemId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy