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

revert-70aa11f8
manoj 9 years ago
parent 431c86ae0e
commit a8ae030fe7

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

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

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

Loading…
Cancel
Save