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 Http11Protocol {
22:
23: //Https
24: public String getAlgorithm();
25:
26: public void setAlgorithm(String algorithm);
27:
28: public boolean getClientAuth();
29:
30: public void setClientAuth(boolean clientAuth);
31:
32: public String getKeystoreFile();
33:
34: public void setKeystoreFile(String keystoreFile);
35:
36: public String getKeystorePass();
37:
38: public void setKeystorePass(String keystorePass);
39:
40: public String getKeystoreType();
41:
42: public void setKeystoreType(String keystoreType);
43:
44: public String getSslProtocol();
45:
46: public void setSslProtocol(String sslProtocol);
47:
48: public String getCiphers();
49:
50: public void setCiphers(String ciphers);
51:
52: public String getKeyAlias();
53:
54: public void setKeyAlias(String keyAlias);
55:
56: public String getTruststoreFile();
57:
58: public void setTruststoreFile(String truststoreFile);
59:
60: public String getTruststorePass();
61:
62: public void setTruststorePass(String truststorePass);
63:
64: public String getTruststoreType();
65:
66: public void setTruststoreType(String truststoreType);
67:
68: }
|