package org.zstack.header.image; import org.zstack.header.message.APIEvent; import org.zstack.header.rest.RestResponse; import java.util.Collections; /** * Created by xing5 on 2016/5/6. */ @RestResponse(allTo = "inventory") public class APISyncImageSizeEvent extends APIEvent { private ImageInventory inventory; public APISyncImageSizeEvent() { } public APISyncImageSizeEvent(String apiId) { super(apiId); } public ImageInventory getInventory() { return inventory; } public void setInventory(ImageInventory inventory) { this.inventory = inventory; } public static APISyncImageSizeEvent __example__() { APISyncImageSizeEvent event = new APISyncImageSizeEvent(); ImageInventory inv = new ImageInventory(); inv.setUuid(uuid()); ImageBackupStorageRefInventory ref = new ImageBackupStorageRefInventory(); ref.setBackupStorageUuid(uuid()); ref.setImageUuid(inv.getUuid()); ref.setInstallPath("ceph://zs-images/f0b149e053b34c7eb7fe694b182ebffd"); ref.setStatus(ImageStatus.Ready.toString()); inv.setName("TinyLinux"); inv.setBackupStorageRefs(Collections.singletonList(ref)); inv.setUrl("http://192.168.1.20/share/images/tinylinux.qcow2"); inv.setFormat(ImageConstant.QCOW2_FORMAT_STRING); inv.setMediaType(ImageConstant.ImageMediaType.RootVolumeTemplate.toString()); inv.setPlatform(ImagePlatform.Linux.toString()); inv.setActualSize(2329057L); inv.setSize(209715200L); event.setInventory(inv); return event; } }