All Known Implementing Classes:
BaseDao

public interface Dao
CRUD operations for Entity Types.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    create(Entity entity)
    Create a new entity.
    void
    delete(Entity entity)
    Delete an entity.
    Find the entity related to the given parent, like the Thing for a Datastream.
    find(Object... primaryKeyValues)
    Find an entity.
    find(URI uri)
    Find an entity.
    void
    patch(Entity entity, List<com.github.fge.jsonpatch.JsonPatchOperation> patch)
    Update the given entity with the given patch.
    Start a query to find an entity collection.
    void
    update(Entity entity)
    Update an entity.