summaryrefslogtreecommitdiff
path: root/core/java/android/net/SSLSessionCache.java
Commit message (Collapse)AuthorAgeFilesLines
* Use new UnsupportedAppUsage annotation.Artur Satayev2020-01-061-1/+1
| | | | | | | | Existing annotations in libcore/ and frameworks/ will deleted after the migration. This also means that any java library that compiles @UnsupportedAppUsage requires a direct dependency on "unsupportedappusage" java_library. Bug: 145132366 Test: m && diff unsupportedappusage_index.csv Change-Id: I0c336de56bc4a041dc97ff9b7927f62f0b44b457
* Add @UnsupportedAppUsage annotationsMathew Inwood2018-08-141-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | For packages: android.net.wimax android.net.wifi.p2p.nsd android.net.wifi.p2p android.net.wifi.hotspot2.pps android.net.wifi.hotspot2.omadm android.net.wifi.hotspot2 android.net.wifi.aware android.net.wifi android.net.util android.net.sip android.net.rtp android.net.nsd android.net.metrics android.net.lowpan android.net.http android.net.captiveportal android.net This is an automatically generated CL. See go/UnsupportedAppUsage for more details. Exempted-From-Owner-Approval: Mechanical changes to the codebase which have been approved by Android API council and announced on android-eng@ Bug: 110868826 Test: m Change-Id: I520be7a4c79e68310c12e4f55bf66acaa94145a1
* Allow SSL caches to be installed directly on SSLContexts.Narayan Kamath2013-09-111-0/+38
| | | | | | | This allows clients to enable ssl session caching without having to use SSLCertificateSocketFactory. Change-Id: Id63b8b31f51c96e73beefe9ecc5fd0cf0a1852c6
* Revert "Allow SSL caches to be installed directly on SSLContexts."Narayan Kamath2013-09-091-33/+1
| | | | | | | | | | This reverts commit 25bef03cbf8d24c225b97202423dae75ed8b640f. Breaks build with cannot access com.android.org.conscrypt.SSLClientSessionCache class file for com.android.org.conscrypt.SSLClientSessionCache not found Change-Id: I6a89b45d5e8c7547778d7485ed02006cd4679989
* Allow SSL caches to be installed directly on SSLContexts.Narayan Kamath2013-09-091-1/+33
| | | | | | | This allows clients to enable ssl session caching without having to use SSLCertificateSocketFactory. Change-Id: Ibfb4b99fa86bc0704674437d9b860531317d2bde
* Track change to JSSE providerKenny Root2013-04-291-3/+3
| | | | Change-Id: I35e824e47ad758ab6408e91e2ba5dcda053a82f5
* API CHANGE: Add SSLSessionCache public API to allow unbundled SSL session ↵Dan Egnor2010-02-101-0/+68
caching. Generally clean up the associated SSLCertificateSocketFactory API as well, change AndroidHttpClient to use this new thing, and make the android-common library build SDK-clean (woo hoo). Bug: 2362543 Bug: 2357311