public DownloadCommand(
     VolumeObjectTO volume,
     Long maxDownloadSizeInBytes,
     String checkSum,
     String url,
     ImageFormat format) {
   super(volume.getName(), url, format, volume.getAccountId());
   checksum = checkSum;
   id = volume.getVolumeId();
   installPath = volume.getPath();
   _store = volume.getDataStore();
   this.maxDownloadSizeInBytes = maxDownloadSizeInBytes;
   resourceType = ResourceType.VOLUME;
 }