Browse Source

user_id is mandatory

JNI-44
Volker Birk 10 years ago
parent
commit
d244129cfd
  1. 2
      test/Testing.java

2
test/Testing.java

@ -31,12 +31,14 @@ class Testing {
Identity from = new Identity();
from.username = "Volker Birk";
from.address = "vb@dingens.org";
from.user_id = "23";
msg.setFrom(from);
Vector<Identity> to = new Vector<Identity>();
Identity to1 = new Identity();
to1.username = "Volker Birk";
to1.address = "vb@pep-project.org";
to1.user_id = "42";
to.add(to1);
msg.setTo(to);

Loading…
Cancel
Save