Add notify to plugin for ios operations

This commit is contained in:
manoj 2015-11-20 22:20:33 +05:30
parent 09c3b4493a
commit be6d0647a6
2 changed files with 11 additions and 0 deletions

View File

@ -55,6 +55,12 @@ public class AndroidDeviceManagementService implements DeviceManagementService {
return null;
}
@Override
public void notifyOperationToDevices(Operation operation, List<DeviceIdentifier> deviceIdentifiers)
throws DeviceManagementException {
}
@Override
public Application[] getApplications(String s, int i, int i2) throws ApplicationManagementException {
return new Application[0];

View File

@ -57,6 +57,11 @@ public class WindowsDeviceManagementService implements DeviceManagementService {
return null;
}
@Override public void notifyOperationToDevices(Operation operation, List<DeviceIdentifier> deviceIdentifiers)
throws DeviceManagementException {
}
@Override
public Application[] getApplications(String s, int i, int i2) throws ApplicationManagementException {
return new Application[0];