fixing add host failure

This commit is contained in:
abhishek 2010-12-10 14:03:36 -08:00
parent c8961453a4
commit cebf829f13

View File

@ -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() {