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

com.slack.api.status.v2.StatusClient Maven / Gradle / Ivy

There is a newer version: 1.39.0
Show newest version
package com.slack.api.status.v2;

import com.slack.api.status.v2.model.CurrentStatus;
import com.slack.api.status.v2.model.SlackIssue;

import java.io.IOException;
import java.util.List;

/**
 * Slack Status API V2 Client.
 *
 * @see Slack Status API
 */
public interface StatusClient {

    String ENDPOINT_URL_PREFIX = "https://status.slack.com/api/v2.0.0/";

    String getEndpointUrlPrefix();

    void setEndpointUrlPrefix(String endpointUrlPrefix);

    CurrentStatus current() throws IOException, StatusApiException;

    List history() throws IOException, StatusApiException;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy