// Partial reads not currently supported.
if(range != null) {
throw new UnsupportedOperationException(UNSUPPORTED_MSG);
}
ReadObjectRequest request = new ReadObjectRequest().identifier(identifier);
try {
return readObject(request, InputStream.class);
} catch (IOException e) {
throw new AtmosException("Error getting response stream: " + e, e);
}