01: /*
02: * Licensed to the Apache Software Foundation (ASF) under one
03: * or more contributor license agreements. See the NOTICE file
04: * distributed with this work for additional information
05: * regarding copyright ownership. The ASF licenses this file
06: * to you under the Apache License, Version 2.0 (the
07: * "License"); you may not use this file except in compliance
08: * with the License. You may obtain a copy of the License at
09: *
10: * http://www.apache.org/licenses/LICENSE-2.0
11: *
12: * Unless required by applicable law or agreed to in writing,
13: * software distributed under the License is distributed on an
14: * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15: * KIND, either express or implied. See the License for the
16: * specific language governing permissions and limitations
17: * under the License.
18: */
19: package org.apache.geronimo.tomcat.connector;
20:
21: public interface Http11APRProtocol {
22:
23: //APR
24: public int getPollTime();
25:
26: public void setPollTime(int pollTime);
27:
28: public int getPollerSize();
29:
30: public void setPollerSize(int pollerSize);
31:
32: public boolean getUseSendfile();
33:
34: public void setUseSendfile(boolean useSendfile);
35:
36: public int getSendfileSize();
37:
38: public void setSendfileSize(int sendfileSize);
39:
40: //SSL
41: public String getSslProtocol();
42:
43: public void setSslProtocol(String sslProtocol);
44:
45: public String getSslCipherSuite();
46:
47: public void setSslCipherSuite(String sslCipherSuite);
48:
49: public String getSslCertificateFile();
50:
51: public void setSslCertificateFile(String sslCertificateFile);
52:
53: public String getSslCertificateKeyFile();
54:
55: public void setSslCertificateKeyFile(String sslCertificateKeyFile);
56:
57: public void setSslPassword(String sslPassword);
58:
59: public String getSslVerifyClient();
60:
61: public void setSslVerifyClient(String sslVerifyClient);
62:
63: public int getSslVerifyDepth();
64:
65: public void setSslVerifyDepth(int sslVerifyDepth);
66:
67: public String getSslCACertificateFile();
68:
69: public void setSslCACertificateFile(String sslCACertificateFile);
70:
71: public String getSslCACertificatePath();
72:
73: public void setSslCACertificatePath(String sslCACertificatePath);
74:
75: public String getSslCertificateChainFile();
76:
77: public void setSslCertificateChainFile(
78: String sslCertificateChainFile);
79:
80: public String getSslCARevocationFile();
81:
82: public void setSslCARevocationFile(String sslCARevocationFile);
83:
84: public String getSslCARevocationPath();
85:
86: public void setSslCARevocationPath(String sslCARevocationPath);
87:
88: }
|