Example usage for Java android.net.http SslError fields, constructors, methods, implement or subclass
The text is from its open source code.
int | SSL_NOTYETVALID The certificate is not yet valid |
int | SSL_EXPIRED The certificate has expired |
int | SSL_IDMISMATCH Hostname mismatch |
int | SSL_UNTRUSTED The certificate authority is not trusted |
SslError(int error, SslCertificate certificate) Creates a new SslError object using the supplied error and certificate. | |
SslError(int error, X509Certificate certificate) Creates a new SslError object using the supplied error and certificate. |
SslCertificate | getCertificate() Gets the SSL certificate associated with this object. |
int | getPrimaryError() Gets the most severe SSL error in this object's set of errors. |
String | getUrl() Gets the URL associated with this object. |
String | toString() Returns a string representation of this object. |