How can I add the string value of the property (from a User-instance) within the message format?
// I want to access a property from the user and put it into the message
@Message(value = "the user: {user.id} - {user.name}", format = Message.Format.MESSAGE_FORMAT)
void test(User user);
How can I do that?