public static Feature convertToFeature(MobileFeature mobileFeature) {
   Feature feature = new Feature();
   feature.setDescription(mobileFeature.getDescription());
   feature.setDeviceType(mobileFeature.getDeviceType());
   feature.setCode(mobileFeature.getCode());
   feature.setName(mobileFeature.getName());
   return feature;
 }