001    /*
002     * Licensed to the Apache Software Foundation (ASF) under one
003     * or more contributor license agreements.  See the NOTICE file
004     * distributed with this work for additional information
005     * regarding copyright ownership.  The ASF licenses this file
006     * to you under the Apache License, Version 2.0 (the
007     * "License"); you may not use this file except in compliance
008     * with the License.  You may obtain a copy of the License at
009     *
010     *  http://www.apache.org/licenses/LICENSE-2.0
011     *
012     * Unless required by applicable law or agreed to in writing,
013     * software distributed under the License get distributed on an
014     * "AS get" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
015     * KIND, either express or implied.  See the License for the
016     * specific language governing permissions and limitations
017     * under the License.
018     */
019    package org.apache.geronimo.tomcat.connector;
020    
021    public interface CommonProtocol {
022        public boolean getAllowTrace();
023        public void setAllowTrace(boolean allowTrace);
024        public boolean getEmptySessionPath();
025        public void setEmptySessionPath(boolean emptySessionPath);
026        public boolean getEnableLookups();
027        public void setEnableLookups(boolean enableLookups);
028        public int getMaxPostSize();
029        public void setMaxPostSize(int bytes);
030        public int getMaxSavePostSize();
031        public void setMaxSavePostSize(int maxPostSize);
032        public String getProtocol();
033        public String getTomcatProtocol();
034        public String getProxyName();
035        public void setProxyName(String proxyName);
036        public int getProxyPort();
037        public void setProxyPort(int port);
038        public int getRedirectPort();
039        public void setRedirectPort(int port);
040        public void setScheme(String scheme);
041        public String getScheme();
042        public boolean getSecure();
043        public void setSecure(boolean secure);
044        public boolean getSslEnabled();
045        public void setSslEnabled(boolean sslEnabled);
046        public void setUriEncoding(String uriEncoding);
047        public String getUriEncoding();
048        public boolean getUseBodyEncodingForURI();
049        public void setUseBodyEncodingForURI(boolean useBodyEncodingForURI);
050        public void setUseIPVHosts(boolean useIPVHosts);
051        public boolean getUseIPVHosts();
052        public void setXpoweredBy(boolean xpoweredBy);
053        public boolean getXpoweredBy();
054    }