@SuppressWarnings("rawtypes")
@Override
public Configuration getConfiguration(final ServletContext context)
{
Configuration config = ConfigurationBuilder
.begin()
.addRule()
.when(Direction.isInbound().and(Path.matches("/v/{param}")))
.perform(SendStatus.code(205))
.where("param").bindsTo(Evaluation.property("param")).validatedBy(new Validator() {