Package org.apache.geronimo.jetty7.connector

Source Code of org.apache.geronimo.jetty7.connector.HTTPSelectChannelConnector

/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements.  See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership.  The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License.  You may obtain a copy of the License at
*
*  http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied.  See the License for the
* specific language governing permissions and limitations
* under the License.
*/


package org.apache.geronimo.jetty7.connector;

import org.apache.geronimo.gbean.GBeanInfo;
import org.apache.geronimo.gbean.GBeanInfoBuilder;
import org.apache.geronimo.jetty7.JettyContainer;
import org.apache.geronimo.management.geronimo.WebManager;
import org.apache.geronimo.system.threads.ThreadPool;
import org.eclipse.jetty.server.nio.SelectChannelConnector;

/**
* @version $Rev: 759104 $ $Date: 2009-03-27 19:21:58 +0800 (Fri, 27 Mar 2009) $
*/
public class HTTPSelectChannelConnector extends JettyConnector {
    public HTTPSelectChannelConnector(JettyContainer container, ThreadPool threadPool) {
        super(container, new SelectChannelConnector(), threadPool, "HTTPSelectChannelConnector");
    }

    public String getProtocol() {
        return WebManager.PROTOCOL_HTTP;
    }

    public int getDefaultPort() {
        return 80;
    }

    public void setRedirectPort(int port) {
        SelectChannelConnector connector = (SelectChannelConnector) listener;
        connector.setConfidentialPort(port);
        connector.setIntegralPort(port);
        connector.setIntegralScheme("https");
        connector.setConfidentialScheme("https");
    }

    public static final GBeanInfo GBEAN_INFO;

    static {
        GBeanInfoBuilder infoFactory = GBeanInfoBuilder.createStatic("Jetty SelectChannel Connector HTTP", HTTPSelectChannelConnector.class, JettyConnector.GBEAN_INFO);
        infoFactory.setConstructor(new String[]{"JettyContainer", "ThreadPool"});
        GBEAN_INFO = infoFactory.getBeanInfo();
    }

    public static GBeanInfo getGBeanInfo() {
        return GBEAN_INFO;
    }
}
TOP

Related Classes of org.apache.geronimo.jetty7.connector.HTTPSelectChannelConnector

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.