Hello Ogg,
thank you, I appreciate your help.
@Test
public void newConversation() {
Conversation conversation = new Conversation();
Subscriber subscriber1 = new Subscriber("an Id");
Subscriber subscriber2 = new Subscriber("another Id");
conversation.addSubscriber(subscriber1);
conversation.addSubscriber(subscriber2);
Message message = new Message(subscriber1, "a message");
conversation.publish(message);
}
I hope you understand the basic structure I want to map. I want to
save the conversation.
best regards
On 25 Feb., 12:10, Ólafur Gauti Guðmundsson <
oli....@gmail.com>
wrote: