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

com.softlayer.api.ResultLimitable Maven / Gradle / Ivy

The newest version!
package com.softlayer.api;

/** Interface implemented by services to support pagination */
public interface ResultLimitable {
    
    ResultLimit getResultLimit();
    
    ResultLimit setResultLimit(ResultLimit limit);
    
    /** The non-paginated total item count. This can be overwritten if a service is reused */ 
    Integer getLastResponseTotalItemCount();
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy