Adds default constructor to JabberAccountID in order to fix serialization error of JabberAccountRegistration.

cusax-fix
paweldomas 13 years ago
parent ba18f3dd23
commit 10916a0bdd

@ -94,6 +94,14 @@ public JabberAccountID(String id, Map<String, String> accountProperties)
getServiceName(accountProperties));
}
/**
* Default constructor for serialization purposes.
*/
public JabberAccountID()
{
this(null, new HashMap<String, String>());
}
/**
* Returns the override phone suffix.
*

Loading…
Cancel
Save