mirror of
https://github.com/Telecominfraproject/wlan-cloud-base.git
synced 2026-01-27 10:22:34 +00:00
added missing clone() methods to RadioBestApSettings, SourceSelectionSteering, and SourceSelectionValue
This commit is contained in:
@@ -104,4 +104,8 @@ public class RadioBestApSettings extends BaseJsonModel
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public RadioBestApSettings clone() {
|
||||
return (RadioBestApSettings) super.clone();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -38,4 +38,15 @@ public class SourceSelectionSteering extends AbstractSource<RadioBestApSettings>
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SourceSelectionSteering clone() {
|
||||
SourceSelectionSteering ret = (SourceSelectionSteering) super.clone();
|
||||
|
||||
if(this.value!=null) {
|
||||
ret.value = this.value.clone();
|
||||
}
|
||||
|
||||
return ret;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
@@ -47,4 +47,10 @@ public class SourceSelectionValue extends AbstractSource<Integer>{
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public SourceSelectionValue clone() {
|
||||
SourceSelectionValue ret = (SourceSelectionValue) super.clone();
|
||||
return ret;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user