A helper module for making generic GET requests calls. It is used by every namespaced API GET method. @see Amadeus#get(String, Params)
(String path)
| 37 | * @see Amadeus#get(String, Params) |
| 38 | */ |
| 39 | public Response get(String path) throws ResponseException { |
| 40 | return request(HttpVerbs.GET, path, null,null); |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * <p> |