mirror of https://github.com/apache/cloudstack.git
Added no args constructors to IpAddressTO/LoadBalancerTO classes.
This commit is contained in:
parent
eb0be686f0
commit
ecc9aabbcc
|
|
@ -1,5 +1,6 @@
|
|||
package com.cloud.agent.api.to;
|
||||
|
||||
|
||||
public class IpAddressTO {
|
||||
|
||||
private String publicIp;
|
||||
|
|
@ -25,6 +26,9 @@ public class IpAddressTO {
|
|||
this.vifMacAddress = vifMacAddress;
|
||||
this.guestIp = guestIp;
|
||||
}
|
||||
|
||||
protected IpAddressTO() {
|
||||
}
|
||||
|
||||
public String getGuestIp(){
|
||||
return guestIp;
|
||||
|
|
|
|||
|
|
@ -46,6 +46,9 @@ public class LoadBalancerTO {
|
|||
}
|
||||
}
|
||||
|
||||
protected LoadBalancerTO() {
|
||||
}
|
||||
|
||||
public String getSrcIp() {
|
||||
return srcIp;
|
||||
}
|
||||
|
|
@ -87,6 +90,9 @@ public class LoadBalancerTO {
|
|||
this.alreadyAdded = alreadyAdded;
|
||||
}
|
||||
|
||||
protected DestinationTO() {
|
||||
}
|
||||
|
||||
public String getDestIp() {
|
||||
return destIp;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue