br.com.andrewribeiro.ribrest.services.holder.interfaces.Holder 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.services.holder.interfaces;
import br.com.andrewribeiro.ribrest.services.SearchModel;
import java.util.List;
/**
*
* @author Andrew Ribeiro
*/
public interface Holder {
public List getModels();
public void setModels(List models);
public SearchModel getSm();
public void setSm(SearchModel sm);
public Long getTotal();
public void setTotal(Long total);
public List getAcceptedFields();
public void setAcceptedFields(List acceptedFields);
}