* @param serviceUrl - The url that the GET request is sent to.
* @return Request - The Request Object.
*/
public static Request get(String serviceUrl) {
RestClient restClient = new RestClient();
return new Request(restClient.getService(serviceUrl), ClientService.METHOD_GET, serviceUrl);
}