Is it possible to sends two or more object simultaneously from sitebricks client to sitebricks service ?
For example, I have a Person
Object and a JobApplication
Object. Can I do something like this:
public class ApplicationStorage {
@Post
public void post(Person person, JobApplication job) {
// ...
}
}
WebClient client = web.clientOf("service url") ..... // here how to send the two objects ?