package org.zstack.storage.fusionstor.primary; import org.zstack.header.message.APIEvent; import org.zstack.header.rest.RestResponse; /** * Created by frank on 8/6/2015. */ @RestResponse(allTo = "inventory") public class APIUpdateMonToFusionstorPrimaryStorageEvent extends APIEvent { private FusionstorPrimaryStorageInventory inventory; public APIUpdateMonToFusionstorPrimaryStorageEvent() { } public APIUpdateMonToFusionstorPrimaryStorageEvent(String apiId) { super(apiId); } public FusionstorPrimaryStorageInventory getInventory() { return inventory; } public void setInventory(FusionstorPrimaryStorageInventory inventory) { this.inventory = inventory; } public static APIUpdateMonToFusionstorPrimaryStorageEvent __example__() { APIUpdateMonToFusionstorPrimaryStorageEvent event = new APIUpdateMonToFusionstorPrimaryStorageEvent(); return event; } }