blob: 3b0c7ab1f0eb7996f195cd4ca956cdd5a480d506 [file] [log] [blame]
/*
* 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.camel.component.platform.http.springboot;
import org.eclipse.jetty.server.Server;
import org.eclipse.jetty.server.handler.ContextHandler;
import org.eclipse.jetty.server.handler.HandlerCollection;
public class JettyServerTest {
public static final String JETTY_SERVER_NAME = "JettyServerTest";
private Server server;
private HandlerCollection contextHandlerCollection;
public JettyServerTest(int port) {
server = new Server(port);
contextHandlerCollection = new HandlerCollection(true);
server.setHandler(contextHandlerCollection);
}
public void start() throws Exception {
server.start();
}
public void stop() throws Exception {
server.stop();
}
/**
* adds a context handler and starts it
*
* @param contextHandler
* @throws Exception
*/
public void addHandler(ContextHandler contextHandler) throws Exception {
contextHandlerCollection.addHandler(contextHandler);
contextHandler.start();
}
}