All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.capitalone.dashboard.request.LogAnalysisSearchRequest Maven / Gradle / Ivy

There is a newer version: 3.4.53
Show newest version
package com.capitalone.dashboard.request;

import org.bson.types.ObjectId;

import javax.validation.constraints.NotNull;

public class LogAnalysisSearchRequest {

    @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 - 2024 Weber Informatics LLC | Privacy Policy