Consume Rest webService from your java program
==============================================
1.Make a java class matching the response Json .
2.Use Jersy client and WebTarget.
3.Make the request using WebTarget.request().get()
4.Use the Gson libarary to deserialize the Json
to a Java object.