mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01:00
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…
x
Reference in New Issue
Block a user