Having to add a new method call for each thing to be included/excluded is more verbose than it needs to be. I'd prefer to be able to do this instead: ``` java return JsonView.with(service.get(principal, id)) .onClass(TestObjectA.class, match() .exclude("*") .include("id", "name")) .returnValue(); ```