
com.github.seratch.jslack.api.status.v1.LegacyStatusClient Maven / Gradle / Ivy
package com.github.seratch.jslack.api.status.v1;
import com.github.seratch.jslack.api.status.v1.model.LegacyCurrentStatus;
import com.github.seratch.jslack.api.status.v1.model.LegacySlackIssue;
import java.io.IOException;
import java.util.List;
/**
* https://api.slack.com/docs/slack-status
*/
public interface LegacyStatusClient {
String ENDPOINT_URL_PREFIX = "https://status.slack.com/api/v1.0.0/";
String getEndpointUrlPrefix();
void setEndpointUrlPrefix(String endpointUrlPrefix);
LegacyCurrentStatus current() throws IOException, LegacyStatusApiException;
List history() throws IOException, LegacyStatusApiException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy