Please note that the contents of this offline web site may be out of date. To access the most recent documentation visit the online version .
Note that links that point to online resources are green in color and will open in a new window.
We would love it if you could give us feedback about this material by filling this form (You have to be online to fill it)
Android APIs
public final class

SSLSessionCache

extends Object
java.lang.Object
   ↳ android.net.SSLSessionCache

Class Overview

File-based cache of established SSL sessions. When re-establishing a connection to the same server, using an SSL session cache can save some time, power, and bandwidth by skipping directly to an encrypted stream. This is a persistent cache which can span executions of the application.

Summary

Public Constructors
SSLSessionCache ( File dir)
Create a session cache using the specified directory.
SSLSessionCache ( Context context)
Create a session cache at the default location for this app.
[Expand]
Inherited Methods
From class java.lang.Object

Public Constructors

public SSLSessionCache ( File dir)

Added in API level 8

Create a session cache using the specified directory. Individual session entries will be files within the directory. Multiple instances for the same directory share data internally.

Parameters
dir to store session files in (created if necessary)
Throws
IOException if the cache can't be opened

public SSLSessionCache ( Context context)

Added in API level 8

Create a session cache at the default location for this app. Multiple instances share data internally.

Parameters
context for the application