service.database.request.InsertRow Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of database-service Show documentation
Show all versions of database-service Show documentation
This is a library providing an API for accessing databases via socket connections
package service.database.request;
import java.util.Map;
public class InsertRow {
private String table;
private Map values;
public String getTable() {
return table;
}
public void setTable(String table) {
this.table = table;
}
public Map getValues() {
return values;
}
public void setValues(Map values) {
this.values = values;
}
}