Fixed getFeatureManager method

This commit is contained in:
harshanL 2015-03-27 22:58:19 +05:30
parent 1f587bddf8
commit a6363348b5
2 changed files with 2 additions and 2 deletions

View File

@ -29,7 +29,7 @@ public class Operation {
CONFIG, MESSAGE, INFO, COMMAND
}
public enum OperationStatuses {
INPROGRES,PENDING,COMPLETED,ERROR
INPROGRESS,PENDING,COMPLETED,ERROR
}
private String code;

View File

@ -83,7 +83,7 @@ public class DeviceManagementServiceImpl implements DeviceManagementService {
}
public FeatureManager getFeatureManager(String type) throws DeviceManagementException {
return null;
return DeviceManagementDataHolder.getInstance().getDeviceManagementProvider().getFeatureManager(type);
}
@Override