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

com.slack.api.status.v1.LegacyStatusClient Maven / Gradle / Ivy

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

import com.slack.api.status.v1.model.LegacyCurrentStatus;
import com.slack.api.status.v1.model.LegacySlackIssue;

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

/**
 * Slack Status API V1 Client.
 *
 * @see Slack Status API
 */
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 - 2024 Weber Informatics LLC | Privacy Policy