|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
This interface defines methods to access information about a secure network connection. Protocols that implement secure connections may use this interface to report the security parameters of the connection.
It provides the certificate, protocol, version, and cipher suite, etc. in use.
This interface performs blocking Input and Output operations. An application will lock if an
implementation of this interface opens a connection from within the main event thread.
Prevent an application from locking by opening a connection from within a thread that is
separate from the main event thread.
SeeConnector for more information.
CertificateException,
SecureConnection,
HttpsConnection| Method Summary | ||
String |
getCipherSuite()
Returns the name of the cipher suite in use for the connection. |
|
String |
getProtocolName()
Returns the secure protocol name. |
|
String |
getProtocolVersion()
Returns the protocol version. |
|
Certificate |
getServerCertificate()
Returns the Certificate used to establish the
secure connection with the server. |
|
| Method Detail |
public String getCipherSuite()
String containing the name of the cipher suite
in use.public String getProtocolName()
String containing the secure protocol identifier;
if TLS (RFC 2246) or WAP TLS Profile and Tunneling (WAP-219-TLS)
is used for the connection the return value is "TLS";
if SSL V3 (The SSL Protocol Version 3.0) is used for the connection;
the return value is "SSL");
if WTLS (WAP 199) is used for the connection the return value is "WTLS".public String getProtocolVersion()
For SSL V3 it MUST return "3.0"
For TLS 1.0 it MUST return "3.1"
For WTLS (WAP-199) it MUST return "1"
For WAP TLS Profile and Tunneling Specification it MUST return "3.1"
null.public Certificate getServerCertificate()
Certificate used to establish the
secure connection with the server.Certificate used to establish the
secure connection with the server.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
Copyright 1999-2009 Research In Motion Limited. 295 Phillip Street, Waterloo, Ontario, Canada, N2L 3W8. All Rights Reserved.
Copyright 1993-2003 Sun Microsystems, Inc. 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
Copyright 2002-2003 Nokia Corporation All Rights Reserved.
Java is a trademark or registered trademark of Sun Microsystems, Inc. in the US and other countries.