org.aarboard.nextcloud.api.utils.NextcloudResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nextcloud-api Show documentation
Show all versions of nextcloud-api Show documentation
Java api library to access nextcloud features from java applications
The newest version!
package org.aarboard.nextcloud.api.utils;
public interface NextcloudResponse {
/**
* @return the status
*/
String getStatus();
/**
* @return the statusCode
*/
int getStatusCode();
/**
* @return the message
*/
String getMessage();
/**
* @return the totalItems
*/
int getTotalItems();
/**
* @return the itemsPerPage
*/
int getItemsPerPage();
}