summaryrefslogtreecommitdiffstats
blob: cbfcfe2ed6e6519cd54311fc9302b3c908910e09 (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
/*
 * Copyright (c) 2012-2013 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 {
    private JSSEContextFactory contextFactory = new JSSEContextFactory();
    
    public TLSContextFactory getTLSContextFactory() {        
        return contextFactory;
    }

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