private Put updateRoute(int routeKey, String category, Integer fileKey, String description) throws IOException, JAXBException {
return updateRoute(routeKey, category, fileKey, description, USERNAME, PASSWORD);
}
private Delete deleteRoute(int key, String authenticationUserName, String authenticationPassword) {
return new Delete(ROUTES_URL + key + GPX_URL_POSTFIX, new SimpleCredentials(authenticationUserName, authenticationPassword));
}