001package org.apache.tapestry5.test;
002
003/**
004 * @deprecated please use {@link JettyRunner} instead
005 *
006 */
007@Deprecated
008public class Jetty7Runner extends JettyRunner
009{
010
011    public Jetty7Runner() {
012        super();
013        System.out.printf("The %s class should no longer be used, please switch to %s", Jetty7Runner.class.getName(), JettyRunner.class.getName());
014    }
015
016    public Jetty7Runner(String webappFolder, String contextPath, int port, int sslPort) throws Exception {
017        super(webappFolder, contextPath, port, sslPort);
018        System.out.printf("The %s class should no longer be used, please switch to %s", Jetty7Runner.class.getName(), JettyRunner.class.getName());
019    }
020
021}