mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Performance improvements
This commit is contained in:
parent
56c39e504f
commit
c8fe5b45b7
@ -21,6 +21,8 @@ package org.wso2.carbon.device.mgt.mqtt.notification.listener;
|
||||
import org.apache.commons.logging.Log;
|
||||
import org.apache.commons.logging.LogFactory;
|
||||
import org.wso2.carbon.context.PrivilegedCarbonContext;
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.exceptions.DeviceManagementException;
|
||||
import org.wso2.carbon.device.mgt.common.pull.notification.PullNotificationExecutionFailedException;
|
||||
import org.wso2.carbon.device.mgt.mqtt.notification.listener.internal.MqttNotificationDataHolder;
|
||||
import org.wso2.carbon.event.input.adapter.core.InputEventAdapterSubscription;
|
||||
@ -48,11 +50,14 @@ public class DeviceTypeOperationAdapterSubscription implements InputEventAdapter
|
||||
PrivilegedCarbonContext.getThreadLocalCarbonContext().setUsername(PrivilegedCarbonContext.
|
||||
getThreadLocalCarbonContext().getUserRealm().getRealmConfiguration().getAdminUserName());
|
||||
deviceType = notificationMessage.getDeviceIdentifier().getType();
|
||||
Device device = MqttNotificationDataHolder.getInstance().getDeviceManagementProviderService()
|
||||
.getDevice(notificationMessage.getDeviceIdentifier(), false);
|
||||
MqttNotificationDataHolder.getInstance().getDeviceManagementProviderService().
|
||||
notifyPullNotificationSubscriber(notificationMessage.getDeviceIdentifier(),
|
||||
notificationMessage.getOperation());
|
||||
notifyPullNotificationSubscriber(device, notificationMessage.getOperation());
|
||||
} catch (UserStoreException e) {
|
||||
log.error("Failed to retrieve tenant username", e);
|
||||
} catch (DeviceManagementException e) {
|
||||
log.error("Failed to retrieve device " + notificationMessage.getDeviceIdentifier(), e);
|
||||
} catch (PullNotificationExecutionFailedException e) {
|
||||
log.error("Failed to execute device type pull notification subscriber execution for device type" + deviceType,
|
||||
e);
|
||||
|
||||
@ -625,9 +625,8 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
|
||||
}
|
||||
|
||||
@Override
|
||||
public void notifyPullNotificationSubscriber(DeviceIdentifier deviceIdentifier, Operation operation)
|
||||
public void notifyPullNotificationSubscriber(Device device, Operation operation)
|
||||
throws PullNotificationExecutionFailedException {
|
||||
|
||||
}
|
||||
|
||||
@Override
|
||||
|
||||
@ -18,6 +18,7 @@
|
||||
|
||||
package org.wso2.carbon.mdm.services.android.mocks;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.common.PaginationRequest;
|
||||
import org.wso2.carbon.device.mgt.common.PaginationResult;
|
||||
@ -34,6 +35,11 @@ public class NotificationManagementServiceMock implements NotificationManagement
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean addNotification(Device device, Notification notification) throws NotificationManagementException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean updateNotification(Notification notification) throws NotificationManagementException {
|
||||
return false;
|
||||
|
||||
@ -17,6 +17,7 @@
|
||||
*/
|
||||
package org.wso2.carbon.mdm.services.android.mocks;
|
||||
|
||||
import org.wso2.carbon.device.mgt.common.Device;
|
||||
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
|
||||
import org.wso2.carbon.device.mgt.common.Feature;
|
||||
import org.wso2.carbon.device.mgt.common.PaginationRequest;
|
||||
@ -121,22 +122,42 @@ public class PolicyManagerServiceMock implements PolicyManagerService {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Policy getAppliedPolicyToDevice(Device device) throws PolicyManagementException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ComplianceFeature> checkPolicyCompliance(DeviceIdentifier deviceIdentifier, Object o)
|
||||
throws PolicyComplianceException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<ComplianceFeature> checkPolicyCompliance(Device device, Object o) throws PolicyComplianceException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkCompliance(DeviceIdentifier deviceIdentifier, Object o) throws PolicyComplianceException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean checkCompliance(Device device, Object o) throws PolicyComplianceException {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public NonComplianceData getDeviceCompliance(DeviceIdentifier deviceIdentifier) throws PolicyComplianceException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public NonComplianceData getDeviceCompliance(Device device) throws PolicyComplianceException {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isCompliant(DeviceIdentifier deviceIdentifier) throws PolicyComplianceException {
|
||||
return false;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user