Add default case in CategorizedSubscriptionResult constructor.

master
Nipuni Kavindya 2 months ago
parent 9561e003bf
commit 7496415ab3

@ -18,6 +18,7 @@
package io.entgra.device.mgt.core.application.mgt.common;
import java.util.ArrayList;
import java.util.List;
public class CategorizedSubscriptionResult {
@ -77,6 +78,13 @@ public class CategorizedSubscriptionResult {
case "SUBSCRIBED":
this.subscribedDevices = devices;
break;
default:
this.installedDevices = new ArrayList<>();
this.pendingDevices = new ArrayList<>();
this.errorDevices = new ArrayList<>();
this.newDevices = new ArrayList<>();
this.subscribedDevices = new ArrayList<>();
break;
}
}

Loading…
Cancel
Save