allow users without mail address

This commit is contained in:
Sebastian Sdorra
2011-01-02 12:41:19 +01:00
parent 2baf53d697
commit 3aee307af0
3 changed files with 14 additions and 2 deletions

View File

@@ -73,6 +73,18 @@ public class User
*/
public User() {}
/**
* Constructs ...
*
*
* @param name
*/
public User(String name)
{
this.name = name;
this.displayName = name;
}
/**
* Constructs ...
*