Fixing https://github.com/wso2/product-iots/issues/685: android sense re-enrollment fixed

revert-dabc3590
Rasika Perera 7 years ago
parent dd5807fab8
commit 5e7370f362

@ -123,7 +123,8 @@ public class AndroidSenseServiceImpl implements AndroidSenseService {
deviceIdentifier.setId(deviceId);
deviceIdentifier.setType(AndroidSenseConstants.DEVICE_TYPE);
try {
if (APIUtil.getDeviceManagementService().isEnrolled(deviceIdentifier)) {
Device enrolledDevice = APIUtil.getDeviceManagementService().getDevice(deviceIdentifier);
if (enrolledDevice != null && !enrolledDevice.getEnrolmentInfo().getStatus().equals(EnrolmentInfo.Status.REMOVED)) {
AndroidConfiguration androidConfiguration = new AndroidConfiguration();
androidConfiguration.setTenantDomain(APIUtil.getAuthenticatedUserTenantDomain());
androidConfiguration.setMqttEndpoint(APIUtil.getMqttEndpoint());

Loading…
Cancel
Save