01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one or more
03: * contributor license agreements. See the NOTICE file distributed with
04: * this work for additional information regarding copyright ownership.
05: * The ASF licenses this file to You under the Apache License, Version 2.0
06: * (the "License"); you may not use this file except in compliance with
07: * the License. You may obtain a copy of the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS,
13: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14: * See the License for the specific language governing permissions and
15: * limitations under the License.
16: */
17:
18: /**
19: * @author Boris V. Kuznetsov
20: * @version $Revision$
21: */package javax.net.ssl;
22:
23: import java.io.IOException;
24: import java.net.InetAddress;
25: import java.net.Socket;
26: import java.net.UnknownHostException;
27:
28: /**
29: * @com.intel.drl.spec_ref
30: *
31: */
32: public abstract class SSLSocket extends Socket {
33: protected SSLSocket() {
34: super ();
35: }
36:
37: protected SSLSocket(String host, int port) throws IOException,
38: UnknownHostException {
39: super (host, port);
40: }
41:
42: protected SSLSocket(InetAddress address, int port)
43: throws IOException {
44: super (address, port);
45: }
46:
47: protected SSLSocket(String host, int port,
48: InetAddress clientAddress, int clientPort)
49: throws IOException, UnknownHostException {
50: super (host, port, clientAddress, clientPort);
51: }
52:
53: protected SSLSocket(InetAddress address, int port,
54: InetAddress clientAddress, int clientPort)
55: throws IOException {
56: super (address, port, clientAddress, clientPort);
57: }
58:
59: public abstract String[] getSupportedCipherSuites();
60:
61: public abstract String[] getEnabledCipherSuites();
62:
63: public abstract void setEnabledCipherSuites(String[] suites);
64:
65: public abstract String[] getSupportedProtocols();
66:
67: public abstract String[] getEnabledProtocols();
68:
69: public abstract void setEnabledProtocols(String[] protocols);
70:
71: public abstract SSLSession getSession();
72:
73: public abstract void addHandshakeCompletedListener(
74: HandshakeCompletedListener listener);
75:
76: public abstract void removeHandshakeCompletedListener(
77: HandshakeCompletedListener listener);
78:
79: public abstract void startHandshake() throws IOException;
80:
81: public abstract void setUseClientMode(boolean mode);
82:
83: public abstract boolean getUseClientMode();
84:
85: public abstract void setNeedClientAuth(boolean need);
86:
87: public abstract boolean getNeedClientAuth();
88:
89: public abstract void setWantClientAuth(boolean want);
90:
91: public abstract boolean getWantClientAuth();
92:
93: public abstract void setEnableSessionCreation(boolean flag);
94:
95: public abstract boolean getEnableSessionCreation();
96:
97: }
|