mirror of https://github.com/apache/cloudstack.git
fixing add host failure
This commit is contained in:
parent
c8961453a4
commit
cebf829f13
|
|
@ -56,9 +56,6 @@ public class DataCenterIpAddressVO {
|
|||
@Column(name="instance_id")
|
||||
private Long instanceId;
|
||||
|
||||
@Column(name="mac_address")
|
||||
private long macAddress;
|
||||
|
||||
protected DataCenterIpAddressVO() {
|
||||
}
|
||||
|
||||
|
|
@ -70,15 +67,10 @@ public class DataCenterIpAddressVO {
|
|||
this.reservationId = reservationId;
|
||||
}
|
||||
|
||||
public DataCenterIpAddressVO(String ipAddress, long dataCenterId, long podId, long macAddress) {
|
||||
public DataCenterIpAddressVO(String ipAddress, long dataCenterId, long podId) {
|
||||
this.ipAddress = ipAddress;
|
||||
this.dataCenterId = dataCenterId;
|
||||
this.podId = podId;
|
||||
this.macAddress = macAddress;
|
||||
}
|
||||
|
||||
public long getMacAddress() {
|
||||
return macAddress;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
|
|
|
|||
Loading…
Reference in New Issue