service.database.request.UpdateRow 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 UpdateRow {
private String table;
private Map oldRow;
private Map newRow;
public String getTable() {
return table;
}
public void setTable(String table) {
this.table = table;
}
public Map getOldRow() {
return oldRow;
}
public void setOldRow(Map oldRow) {
this.oldRow = oldRow;
}
public Map getNewRow() {
return newRow;
}
public void setNewRow(Map newRow) {
this.newRow = newRow;
}
}