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

com.sinch.sdk.core.http.HttpStatus Maven / Gradle / Ivy

There is a newer version: 1.4.0
Show newest version
package com.sinch.sdk.core.http;

import java.net.HttpURLConnection;

public class HttpStatus {

  public static Integer UNAUTHORIZED = HttpURLConnection.HTTP_UNAUTHORIZED;

  public static boolean isSuccessfulStatus(int statusCode) {
    return statusCode >= 200 && statusCode < 300;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy