summaryrefslogtreecommitdiffstats
blob: f5b40d1391a91669a574698d9c16de3394c55dce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
/*
 * Copyright (c) 2012 Isode Limited, London, England.
 * All rights reserved.
 */
/*
 * Copyright (c) 2010 Remko Tronçon.
 * All rights reserved.
 */
package com.isode.stroke.tls;

import com.isode.stroke.tls.java.JSSEContextFactory;

public class PlatformTLSFactories {
    public TLSContextFactory getTLSContextFactory() {        
        // TODO: JSSEContextFactory is implemented, and so uncommenting
        // this line will result in the client attempting TLS handshakes, but
        // other support is required inside CoreClient etc. and so for the
        // moment we just return null
        //return new JSSEContextFactory();
        return null;
    }

    public CertificateFactory getCertificateFactory() {
        /*FIXME: Implement*/
        return null;
    }
}