Adding feature manager related changes

This commit is contained in:
prabathabey 2015-03-20 17:50:56 +05:30
parent 61073f0a4b
commit 80908bac1e
2 changed files with 6 additions and 2 deletions

View File

@ -62,8 +62,10 @@ public class DeviceManagementServiceProviderImpl implements DeviceManagementServ
}
@Override
public FeatureManager getFeatureManager() {
return null;
public FeatureManager getFeatureManager(String type) {
DeviceManager dms =
this.getPluginRepository().getDeviceManagementProvider(type);
return dms.getFeatureManager();
}
@Override

View File

@ -38,4 +38,6 @@ public interface DeviceManagementService extends DeviceManager, LicenseManager,
List<Device> getDeviceListOfUser(String username) throws DeviceManagementException;
}