serialization issue in json/gson

This commit is contained in:
Daan Hoogland 2014-12-30 16:46:32 +01:00
parent 8cf67c0bf7
commit 4ade3fbeb4
1 changed files with 3 additions and 3 deletions

View File

@ -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