957958959960961962963964
Response response = this.execute(method, new DefaultResponseHandler()); if(response.getStatusCode() == HttpStatus.SC_CREATED) { return response.getResponseHeader(HttpHeaders.ETAG).getValue(); } else { throw new GenericException(response); } }
10191020102110221023102410251026
10401041104210431044104510461047
Response response = this.execute(method, new DefaultResponseHandler()); if(response.getStatusCode() == HttpStatus.SC_NO_CONTENT) { // Deleted } else { throw new GenericException(response); } }
10931094109510961097109810991100
method.abort(); throw new NotFoundException(response); } else { method.abort(); throw new GenericException(response); } }
11101111111211131114111511161117