final HttpGet httpGet = new HttpGet(uri);
final CloseableHttpResponse response = httpClient.execute(httpGet);
A asset = (A) new RawAsset();
final HttpEntity httpEntity = response.getEntity();
final Header contentType = httpEntity.getContentType();
if (contentType != null) {
asset.setContentType(contentType.getValue());
}