From be6d0647a6e8a5b1a5e818df6751ab2dcaf63d7c Mon Sep 17 00:00:00 2001 From: manoj Date: Fri, 20 Nov 2015 22:20:33 +0530 Subject: [PATCH] Add notify to plugin for ios operations --- .../mobile/impl/android/AndroidDeviceManagementService.java | 6 ++++++ .../mobile/impl/windows/WindowsDeviceManagementService.java | 5 +++++ 2 files changed, 11 insertions(+) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java index 5bc70f4ea..18e088ee0 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/AndroidDeviceManagementService.java @@ -55,6 +55,12 @@ public class AndroidDeviceManagementService implements DeviceManagementService { return null; } + @Override + public void notifyOperationToDevices(Operation operation, List deviceIdentifiers) + throws DeviceManagementException { + + } + @Override public Application[] getApplications(String s, int i, int i2) throws ApplicationManagementException { return new Application[0]; diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManagementService.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManagementService.java index f90b67723..45426cd35 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManagementService.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/windows/WindowsDeviceManagementService.java @@ -57,6 +57,11 @@ public class WindowsDeviceManagementService implements DeviceManagementService { return null; } + @Override public void notifyOperationToDevices(Operation operation, List deviceIdentifiers) + throws DeviceManagementException { + + } + @Override public Application[] getApplications(String s, int i, int i2) throws ApplicationManagementException { return new Application[0];