com.testvagrant.monitor.entities.RunConfiguration 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.entities;
public class RunConfiguration {
private String dbname = "optimus";
private String dburi = "mongodb://localhost:27017";
private String dbservice = "http://localhost:8090/v1";
public String getDbname() {
return dbname;
}
public void setDbname(String dbname) {
this.dbname = dbname;
}
public String getDburi() {
return dburi;
}
public void setDburi(String dburi) {
this.dburi = dburi;
}
public String getDbservice() {
return dbservice;
}
public void setDbservice(String dbservice) {
this.dbservice = dbservice;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy