no.ssb.lds.api.persistence.json.JsonDocument Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of linked-data-store-persistence-provider-api Show documentation
Show all versions of linked-data-store-persistence-provider-api Show documentation
LinkedDataStore Persistence Provider API
package no.ssb.lds.api.persistence.json;
import no.ssb.lds.api.persistence.DocumentKey;
import org.json.JSONObject;
public class JsonDocument {
private final DocumentKey key;
private JSONObject document;
public JsonDocument(DocumentKey key, JSONObject document) {
this.key = key;
this.document = document;
}
public DocumentKey key() {
return key;
}
public JSONObject document() {
return document;
}
public boolean deleted() {
return document == null;
}
}