Example usage for javax.net.ssl SSLSession interface-usage

List of usage examples for javax.net.ssl SSLSession interface-usage

Introduction

In this page you can find the example usage for javax.net.ssl SSLSession interface-usage.

Usage

From source file android.core.SSLPerformanceTest.java

class FakeSession implements SSLSession {
    final String host;

    FakeSession(String host) {
        this.host = host;
    }