I have a JSON Object as below:
{  
   "_embedded":{  
      "user":{  
         "passwordChanged":"01/10/2017",
         "profile":{  
            "firstName":"xyz",
            "lastName":"abc",
            "timeZone":"America/Los_Angeles",
            "login":"xyz@abc.com",
            "locale":"en"
         },
         "id":"1234567a"
      }
   },
   "token":"120392w",
   "expiresAt":"01/12/2022",
   "status":"active"
}
I want to iterate this object and retrieve the value of "timeZone". How do I do it in JAVA?
 
    