I'd like to capture all requests, regardless of the method used.
##technique 1: map all methods one by one
-> Not possible since patch() and options() method aren't present, so PATCH and OPTIONS request won't be mappable
-> Too verbose
QuantumMaid quantumMaid = quantumMaid()
.withHttpMaid(anHttpMaid()
.get("/*", dumpRequest())
//.options("/*", dumpRequest())
//.patch("/*", dumpRequest())
.post("/*", dumpRequest())
.put("/*", dumpRequest())
.delete("/*", dumpRequest()).build())
.withLocalHostEndpointOnPort(port);
technique 2: catchall any() method
to route everything to one handler
-> Not possible either as there is no such support in httpmaid
QuantumMaid quantumMaid = quantumMaid()
.withHttpMaid(anHttpMaid()
.any("/*", dumpRequest())
.withLocalHostEndpointOnPort(port);