com.testvagrant.monitor.requests.Intellisense Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of optimus-monitor Show documentation
Show all versions of optimus-monitor Show documentation
The Java Client provides access to Optimus cloud for all java based projects.
The newest version!
package com.testvagrant.monitor.requests;
import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
@JsonIgnoreProperties(ignoreUnknown = true)
public class Intellisense {
private String id;
private String buildId;
private String exceptionsense;
public String getId() {
return id;
}
public void setId(String id) {
this.id = id;
}
public String getBuildId() {
return buildId;
}
public void setBuildId(String buildId) {
this.buildId = buildId;
}
public String getExceptionsense() {
return exceptionsense;
}
public void setExceptionsense(String exceptionsense) {
this.exceptionsense = exceptionsense;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy