com.softlayer.api.ResultLimitable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of softlayer-api-client Show documentation
Show all versions of softlayer-api-client Show documentation
API client for accessing the SoftLayer API
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();
}