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