@Test
public void testJson() throws JsonParseException, JsonMappingException, IOException{
String json = "{\"data\":{\"id\":null,\"displayName\":null,\"kind\":\"kined\",\"aboutMe\":\"abbout me\",\"profileUrl\":null,\"emails\":[],\"url\":[],\"photos\":null,\"organizations\":[]}}";
JsonFactory factory = new JsonFactory();
ObjectMapper mapper = new ObjectMapper(factory);
BuzzProfile bz = new BuzzProfile();
// bz.getData().setAboutMe("abbout me");
// bz.getData().setEmails(new ArrayList<BuzzProfile.Email>());
// bz.getData().setKind("kined");
// bz.getData().setUrl(new ArrayList<BuzzProfile.Urls>());
// bz.getData().setOrganizations(new ArrayList<BuzzProfile.Organizations>());