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

br.com.andrewribeiro.ribrest.services.holder.interfaces.Holder Maven / Gradle / Ivy

Go to download

Ribrest Framework - A simple Java framework that truly improve your productivity when developing restful based webservices.

There is a newer version: 1.27.0
Show newest version
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);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy