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

com.github.huifer.crud.interfaces.CrudTemplate Maven / Gradle / Ivy

package com.github.huifer.crud.interfaces;


import com.github.huifer.crud.interfaces.id.IdInterface;

public interface CrudTemplate {

  boolean insert(T t);

  T byId(I i, Class c);

  boolean del(I i, Class c);

  boolean editor(I i, T t);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy