br.com.andrewribeiro.ribrest.dao.interfaces.CRUD Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Ribrest Show documentation
Show all versions of Ribrest Show documentation
Ribrest Framework - A simple Java framework that truly improve your productivity when developing restful based webservices.
package br.com.andrewribeiro.ribrest.dao.interfaces;
import br.com.andrewribeiro.ribrest.services.Result;
/**
*
* @author Andrew Ribeiro
*/
public interface CRUD {
public void create();
public void read();
public void update();
public void delete();
}