mirror of https://github.com/apache/cloudstack.git
serialization issue in json/gson
This commit is contained in:
parent
8cf67c0bf7
commit
4ade3fbeb4
|
|
@ -23,7 +23,7 @@ public class NicTO extends NetworkTO {
|
|||
Integer networkRateMbps;
|
||||
Integer networkRateMulticastMbps;
|
||||
boolean defaultNic;
|
||||
String uuid;
|
||||
String nicUuid;
|
||||
List<String> nicSecIps;
|
||||
|
||||
public NicTO() {
|
||||
|
|
@ -60,12 +60,12 @@ public class NicTO extends NetworkTO {
|
|||
|
||||
@Override
|
||||
public String getUuid() {
|
||||
return uuid;
|
||||
return nicUuid;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setUuid(String uuid) {
|
||||
this.uuid = uuid;
|
||||
this.nicUuid = uuid;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue