mirror of
https://repository.entgra.net/community/device-mgt-plugins.git
synced 2025-09-16 23:42:15 +00:00
Merge pull request 'Add unimplemented methods' (#17) from rajitha/device-mgt-plugins:fix-test-failure into master
Reviewed-on: https://repository.entgra.net/community/device-mgt-plugins/pulls/17
This commit is contained in:
commit
f192fb046d
@ -41,6 +41,7 @@ import io.entgra.device.mgt.core.device.mgt.common.DeviceIdentifier;
|
|||||||
import io.entgra.device.mgt.core.device.mgt.common.DeviceTransferRequest;
|
import io.entgra.device.mgt.core.device.mgt.common.DeviceTransferRequest;
|
||||||
import io.entgra.device.mgt.core.device.mgt.common.DynamicTaskContext;
|
import io.entgra.device.mgt.core.device.mgt.common.DynamicTaskContext;
|
||||||
import io.entgra.device.mgt.core.device.mgt.common.StartupOperationConfig;
|
import io.entgra.device.mgt.core.device.mgt.common.StartupOperationConfig;
|
||||||
|
import io.entgra.device.mgt.core.device.mgt.common.app.mgt.Application;
|
||||||
import io.entgra.device.mgt.core.device.mgt.common.app.mgt.ApplicationManagementException;
|
import io.entgra.device.mgt.core.device.mgt.common.app.mgt.ApplicationManagementException;
|
||||||
import io.entgra.device.mgt.core.device.mgt.common.configuration.mgt.AmbiguousConfigurationException;
|
import io.entgra.device.mgt.core.device.mgt.common.configuration.mgt.AmbiguousConfigurationException;
|
||||||
import io.entgra.device.mgt.core.device.mgt.common.configuration.mgt.ConfigurationEntry;
|
import io.entgra.device.mgt.core.device.mgt.common.configuration.mgt.ConfigurationEntry;
|
||||||
@ -862,4 +863,24 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
|
|||||||
public Boolean sendDeviceNameChangedNotification(Device device) throws DeviceManagementException {
|
public Boolean sendDeviceNameChangedNotification(Device device) throws DeviceManagementException {
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void saveApplicationIcon(String s, String s1, String s2, int i) throws DeviceManagementException {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void updateApplicationIcon(String s, String s1, String s2, String s3) throws DeviceManagementException {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void deleteApplicationIcon(String s) throws DeviceManagementException {
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public List<Application> getInstalledApplicationsOnDevice(Device device, int i, int i1) throws DeviceManagementException {
|
||||||
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user