
com.nulabinc.backlog4j.http.BacklogHttpResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of backlog4j Show documentation
Show all versions of backlog4j Show documentation
Backlog4j is a Backlog binding library for Java.
The newest version!
package com.nulabinc.backlog4j.http;
import java.io.InputStream;
import java.util.Date;
/**
* @author nulab-inc
*/
public interface BacklogHttpResponse {
int getStatusCode();
int getRateLimitLimit();
int getRateLimitRemaining();
Date getRateLimitResetDate();
String getRateLimitReset();
InputStream asInputStream();
String asString();
String getFileNameFromContentDisposition();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy