public interface CrudHandler<E>
E
create(E object)
void
delete(E object)
PagedResult<E>
read(String text, String filter, Integer start, Integer maxobjects)
AsyncList<E>
readAsync(String text, String filter)
update(E object)
E create(E object) throws Exception
Exception
PagedResult<E> read(String text, String filter, Integer start, Integer maxobjects) throws Exception
AsyncList<E> readAsync(String text, String filter) throws Exception
E update(E object) throws Exception
void delete(E object) throws Exception