1 package com.maverick.ssl; 2 3 import java.io.IOException ; 4 import java.io.InputStream ; 5 import java.io.OutputStream ; 6 7 import com.maverick.crypto.asn1.x509.X509Certificate; 8 9 public interface SSLTransport { 10 11 public abstract void initialize(InputStream in, OutputStream out) 12 throws IOException , SSLException; 13 14 public abstract void close() throws SSLException; 15 16 public abstract InputStream getInputStream() throws IOException ; 17 18 public abstract OutputStream getOutputStream() throws IOException ; 19 20 } | Popular Tags |