The @RestMethod.bpIncludes()/bpExcludes() annotations have been replaced simplified syntax.

Instead of LAX JSON, it's now an array of simple key/value pairs and the names have been shortened:

// Old:
@RestMethod(
   bpExcludes="{Bean1: 'foo,bar', '*': 'baz,qux'}"
)
// New:
@RestMethod(
   bpx={"Bean1: foo,bar", "*: baz,qux"}
)

See:
http://juneau.incubator.apache.org/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html#bpi--
http://juneau.incubator.apache.org/site/apidocs/org/apache/juneau/rest/annotation/RestMethod.html#bpx--

  • No labels