mirror of
https://github.com/Telecominfraproject/wlan-cloud-opensync-controller.git
synced 2025-11-01 11:07:49 +00:00
Robustness for ActiveBSSIDs, state change handling cleanup
This commit is contained in:
@@ -48,7 +48,7 @@ public class OpensyncAPRadioState extends BaseJsonModel {
|
||||
public Map<String, String> hwParams;
|
||||
public RadioType freqBand;
|
||||
public int thermalIntegration;
|
||||
public List<OpensyncAPVIFState> vifStates;
|
||||
public Set<Uuid> vifStates;
|
||||
|
||||
public OpensyncAPRadioState() {
|
||||
super();
|
||||
@@ -56,7 +56,7 @@ public class OpensyncAPRadioState extends BaseJsonModel {
|
||||
hwConfig = new HashMap<>();
|
||||
channels = new HashMap<>();
|
||||
hwParams = new HashMap<>();
|
||||
vifStates = new ArrayList<>();
|
||||
vifStates = new HashSet<>();
|
||||
}
|
||||
|
||||
public String channelMode;
|
||||
@@ -103,11 +103,11 @@ public class OpensyncAPRadioState extends BaseJsonModel {
|
||||
this.mac = mac;
|
||||
}
|
||||
|
||||
public List<OpensyncAPVIFState> getVifStates() {
|
||||
public Set<Uuid> getVifStates() {
|
||||
return vifStates;
|
||||
}
|
||||
|
||||
public void setVifStates(List<OpensyncAPVIFState> vifStates) {
|
||||
public void setVifStates(Set<Uuid> vifStates) {
|
||||
this.vifStates = vifStates;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user