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