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.ServerSocket;
26:
27: /**
28: * @com.intel.drl.spec_ref
29: *
30: */
31: public abstract class SSLServerSocket extends ServerSocket {
32: protected SSLServerSocket() throws IOException {
33: super ();
34: }
35:
36: protected SSLServerSocket(int port) throws IOException {
37: super (port);
38: }
39:
40: protected SSLServerSocket(int port, int backlog) throws IOException {
41: super (port, backlog);
42: }
43:
44: protected SSLServerSocket(int port, int backlog, InetAddress address)
45: throws IOException {
46: super (port, backlog, address);
47: }
48:
49: public abstract String[] getEnabledCipherSuites();
50:
51: public abstract void setEnabledCipherSuites(String[] suites);
52:
53: public abstract String[] getSupportedCipherSuites();
54:
55: public abstract String[] getSupportedProtocols();
56:
57: public abstract String[] getEnabledProtocols();
58:
59: public abstract void setEnabledProtocols(String[] protocols);
60:
61: public abstract void setNeedClientAuth(boolean need);
62:
63: public abstract boolean getNeedClientAuth();
64:
65: public abstract void setWantClientAuth(boolean want);
66:
67: public abstract boolean getWantClientAuth();
68:
69: public abstract void setUseClientMode(boolean mode);
70:
71: public abstract boolean getUseClientMode();
72:
73: public abstract void setEnableSessionCreation(boolean flag);
74:
75: public abstract boolean getEnableSessionCreation();
76: }
|