org.seleniumhq.jetty7.webapp.AbstractConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jetty-repacked Show documentation
Show all versions of jetty-repacked Show documentation
Browser automation framework dependency on jetty
package org.eclipse.jetty.webapp;
public class AbstractConfiguration implements Configuration
{
public void preConfigure(WebAppContext context) throws Exception
{
}
public void configure(WebAppContext context) throws Exception
{
}
public void postConfigure(WebAppContext context) throws Exception
{
}
public void deconfigure(WebAppContext context) throws Exception
{
}
public void destroy(WebAppContext context) throws Exception
{
}
public void cloneConfigure(WebAppContext template, WebAppContext context) throws Exception
{
}
}