
org.apache.tapestry5.test.Jetty7Runner Maven / Gradle / Ivy
The newest version!
package org.apache.tapestry5.test;
/**
* @deprecated please use {@link JettyRunner} instead
*
*/
@Deprecated
public class Jetty7Runner extends JettyRunner
{
public Jetty7Runner() {
super();
System.out.printf("The %s class should no longer be used, please switch to %s", Jetty7Runner.class.getName(), JettyRunner.class.getName());
}
public Jetty7Runner(String webappFolder, String contextPath, int port, int sslPort) throws Exception {
super(webappFolder, contextPath, port, sslPort);
System.out.printf("The %s class should no longer be used, please switch to %s", Jetty7Runner.class.getName(), JettyRunner.class.getName());
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy