com.capitalone.dashboard.request.LogAnalysisSearchRequest Maven / Gradle / Ivy
package com.capitalone.dashboard.request;
import org.bson.types.ObjectId;
import javax.validation.constraints.NotNull;
public class LogAnalysisSearchRequest extends BaseRequest {
@NotNull
private ObjectId componentId;
private Integer max;
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;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy