com.infomaximum.database.schema.dbstruct.DBObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rdao Show documentation
Show all versions of rdao Show documentation
Library for creating a light cluster
The newest version!
package com.infomaximum.database.schema.dbstruct;
import net.minidev.json.JSONObject;
public abstract class DBObject {
static final String JSON_PROP_ID = "id";
private int id;
DBObject(int id) {
this.id = id;
}
void setId(int id) {
this.id = id;
}
public int getId() {
return id;
}
abstract JSONObject toJson();
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy