All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.datafx.crud.CrudService Maven / Gradle / Ivy

The newest version!
package org.datafx.crud;

import org.datafx.util.EntityWithId;
import org.datafx.util.QueryParameter;

import java.util.List;

public interface CrudService, T> {

    public void delete(S entity) throws CrudException;

    public S save(S entity) throws CrudException;

    public List getAll() throws CrudException;

    public S getById(T id) throws CrudException;

    public List query(String name, QueryParameter... params) throws CrudException;
}