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

android.net.http.SslError Maven / Gradle / Ivy

Go to download

A library jar that provides APIs for Applications written for the Google Android Platform.

The newest version!
package android.net.http;
public class SslError
{
@java.lang.Deprecated()
public  SslError(int error, android.net.http.SslCertificate certificate) { throw new RuntimeException("Stub!"); }
@java.lang.Deprecated()
public  SslError(int error, java.security.cert.X509Certificate certificate) { throw new RuntimeException("Stub!"); }
public  SslError(int error, android.net.http.SslCertificate certificate, java.lang.String url) { throw new RuntimeException("Stub!"); }
public  SslError(int error, java.security.cert.X509Certificate certificate, java.lang.String url) { throw new RuntimeException("Stub!"); }
public  android.net.http.SslCertificate getCertificate() { throw new RuntimeException("Stub!"); }
public  java.lang.String getUrl() { throw new RuntimeException("Stub!"); }
public  boolean addError(int error) { throw new RuntimeException("Stub!"); }
public  boolean hasError(int error) { throw new RuntimeException("Stub!"); }
public  int getPrimaryError() { throw new RuntimeException("Stub!"); }
public  java.lang.String toString() { throw new RuntimeException("Stub!"); }
public static final int SSL_NOTYETVALID = 0;
public static final int SSL_EXPIRED = 1;
public static final int SSL_IDMISMATCH = 2;
public static final int SSL_UNTRUSTED = 3;
public static final int SSL_DATE_INVALID = 4;
public static final int SSL_INVALID = 5;
@java.lang.Deprecated()
public static final int SSL_MAX_ERROR = 6;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy