0

The REST Client of HTTP Builder has a withRest closure. How can I tell what is available in this closure:

    withRest(uri: domainName) { what,parameters,are,available,here ->
    }

The source is here (line 80 seems like a good place to start).

zoran119
  • 10,657
  • 12
  • 46
  • 88

1 Answers1

0

Take a look at the groovyx.net.http.RESTClient class. The JavaDoc should give you some idea of the things you can do with withRest

Michael J. Lee
  • 12,278
  • 3
  • 23
  • 39