
com.capitalone.dashboard.request.Monitor2DataCreateRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hygieia-common Show documentation
Show all versions of hygieia-common Show documentation
Core package shared by API layer and Microservices
The newest version!
package com.capitalone.dashboard.request;
import javax.validation.constraints.NotNull;
public class Monitor2DataCreateRequest {
@NotNull
private String name;
private String url;
private int status;
public String getName() { return this.name; }
public void setName(String name) { this.name = name; }
public String getUrl() { return this.url; }
public void setUrl(String url) { this.url = url; }
public int getStatus() { return this.status; }
public void setStatus(int status) { this.status = status; }
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy