Remove username from the mindmap info.

This commit is contained in:
Paulo Gustavo Veiga
2012-07-15 02:04:53 -03:00
parent 9257638da2
commit 1ac80626b4
7 changed files with 6 additions and 12 deletions

View File

@@ -22,7 +22,7 @@ public class JsonTest {
String json2 = "{\"title\":\"some title\",\"description\":\"description here\"}";
mapper.readValue(json2, RestMindmap.class);
String userJson = "{\"username\":\"admin\",\"email\":\"admin@wisemapping.org\",\"tags\":[],\"creationDate\":1329706800000,\"firstname\":\"Wise\",\"lastname\":\"test\",\"password\":\"test\"}";
String userJson = "{\"email\":\"admin@wisemapping.org\",\"tags\":[],\"creationDate\":1329706800000,\"firstname\":\"Wise\",\"lastname\":\"test\",\"password\":\"test\"}";
final RestUser restUser = mapper.readValue(userJson, RestUser.class);
}