Back to project page SMSAlive.
The source code is released under:
Apache License
If you think the Android project SMSAlive listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.futuretech.app.smsalive.repository; //from ww w. j av a 2s . com import java.util.List; /** * Created by ironhulk on 2014/11/27. */ public interface RepositoryUtil<E>{ public long createEntity(E entity); public void updateEntity(E entity); public E findEntityById(long id); public E findEntity(E entity); public E findEntityByQuery(String query); public List<E> findAllEntities(); public int deleteEntity(E entity); public int deleteEntityById(long id); }