Doing a patial commit

revert-70aa11f8
geethkokila 9 years ago
commit 8f9259f346

@ -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;
}

@ -1,7 +1,15 @@
package org.wso2.carbon.device.mgt.core.api.mgt;
import org.wso2.carbon.device.mgt.common.DeviceIdentifier;
import org.wso2.carbon.device.mgt.common.app.mgt.Application;
import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManagementException;
import org.wso2.carbon.device.mgt.common.app.mgt.ApplicationManager;
import java.util.List;
public interface ApplicationManagementProviderService extends ApplicationManager {
public void updateApplicationListInstallInDevice(DeviceIdentifier deviceIdentifier,
List<Application> applications) throws ApplicationManagementException;
}

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

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

Loading…
Cancel
Save