}
@Override
public Configuration getConfiguration(final ServletContext context)
{
Configuration config = ConfigurationBuilder.begin()
.addRule().when(Path.matches("/abort")).perform(Lifecycle.abort())
.addRule().when(Path.matches("/abort{path}"))
.perform(SendStatus.code(400))
.where("path").matches(".*")