Remove updateApplication List method from ApplicationManager interface. This is not need to implement for plugins

This commit is contained in:
manoj 2015-07-06 13:20:34 +05:30
parent 431c86ae0e
commit a8ae030fe7
3 changed files with 1 additions and 10 deletions

View File

@ -69,8 +69,5 @@ public interface ApplicationManager {
void installApplication(Operation operation, List<DeviceIdentifier> deviceIdentifiers)
throws ApplicationManagementException;
void updateInstalledApplicationListOfDevice(DeviceIdentifier deviceIdentifier,
List<Application> applications) throws ApplicationManagementException;
}

View File

@ -116,7 +116,7 @@ public class ApplicationManagerProviderServiceImpl implements ApplicationManagem
}
}
@Override
public void updateInstalledApplicationListOfDevice(
DeviceIdentifier deviceIdentifier, List<Application> applications) throws ApplicationManagementException {

View File

@ -123,10 +123,4 @@ public class TestDeviceManagementService implements DeviceManagementService {
throws ApplicationManagementException {
}
@Override
public void updateInstalledApplicationListOfDevice(DeviceIdentifier deviceIdentifier,
List<Application> applications) throws ApplicationManagementException {
}
}