@Override
 public Optional<InputStream> getFileContents(BuildJobStateFileHashEntry entry)
     throws IOException {
   Preconditions.checkState(
       entry.isSetHashCode(), String.format("File hash missing for file [%s]", entry.getPath()));
   return Optional.of(service.fetchSourceFile(entry.getHashCode()));
 }