mirror of https://github.com/apache/cloudstack.git
97 lines
1.7 KiB
Java
97 lines
1.7 KiB
Java
package com.cloud.api.response;
|
|
|
|
import java.util.Date;
|
|
|
|
import com.cloud.api.ResponseObject;
|
|
import com.cloud.serializer.Param;
|
|
|
|
public class PreallocatedLunResponse implements ResponseObject {
|
|
@Param(name="id")
|
|
private Long id;
|
|
|
|
@Param(name="volumeid")
|
|
private Long volumeId;
|
|
|
|
@Param(name="zoneid")
|
|
private Long zoneId;
|
|
|
|
@Param(name="lun")
|
|
private Integer lun;
|
|
|
|
@Param(name="portal")
|
|
private String portal;
|
|
|
|
@Param(name="size")
|
|
private Long size;
|
|
|
|
@Param(name="taken")
|
|
private Date taken;
|
|
|
|
@Param(name="targetiqn")
|
|
private String targetIqn;
|
|
|
|
public Long getId() {
|
|
return id;
|
|
}
|
|
|
|
public void setId(Long id) {
|
|
this.id = id;
|
|
}
|
|
|
|
public Long getVolumeId() {
|
|
return volumeId;
|
|
}
|
|
|
|
public void setVolumeId(Long volumeId) {
|
|
this.volumeId = volumeId;
|
|
}
|
|
|
|
public Long getZoneId() {
|
|
return zoneId;
|
|
}
|
|
|
|
public void setZoneId(Long zoneId) {
|
|
this.zoneId = zoneId;
|
|
}
|
|
|
|
public Integer getLun() {
|
|
return lun;
|
|
}
|
|
|
|
public void setLun(Integer lun) {
|
|
this.lun = lun;
|
|
}
|
|
|
|
public String getPortal() {
|
|
return portal;
|
|
}
|
|
|
|
public void setPortal(String portal) {
|
|
this.portal = portal;
|
|
}
|
|
|
|
public Long getSize() {
|
|
return size;
|
|
}
|
|
|
|
public void setSize(Long size) {
|
|
this.size = size;
|
|
}
|
|
|
|
public Date getTaken() {
|
|
return taken;
|
|
}
|
|
|
|
public void setTaken(Date taken) {
|
|
this.taken = taken;
|
|
}
|
|
|
|
public String getTargetIqn() {
|
|
return targetIqn;
|
|
}
|
|
|
|
public void setTargetIqn(String targetIqn) {
|
|
this.targetIqn = targetIqn;
|
|
}
|
|
}
|