package org.zstack.header.storage.primary; import org.zstack.header.image.ImageInventory; import org.zstack.header.message.NeedReplyMessage; /** * Created by frank on 9/16/2015. */ public class DownloadImageToPrimaryStorageCacheMsg extends NeedReplyMessage implements PrimaryStorageMessage { private String primaryStorageUuid; private ImageInventory image; private String hostUuid; public String getHostUuid() { return hostUuid; } public void setHostUuid(String hostUuid) { this.hostUuid = hostUuid; } @Override public String getPrimaryStorageUuid() { return primaryStorageUuid; } public void setPrimaryStorageUuid(String primaryStorageUuid) { this.primaryStorageUuid = primaryStorageUuid; } public ImageInventory getImage() { return image; } public void setImage(ImageInventory image) { this.image = image; } }