// forward action should enforce forward filter to be invoked
s = target.queryParam("action", "forward").request().get(String.class);
Assert.assertEquals(">>FORWARD", s);
// direct call to the include resource
s = target.path("included").request().get(String.class);
Assert.assertEquals("[INCLUDED]", s);
// include call should involve both regular and include filter
s = target.path("included").queryParam("action", "include").request().get(String.class);
Assert.assertEquals("[SOMETHING INCLUDED]", s);