@Override
 public void writeToParcel(Parcel dest, int flags) {
   UUIDUtils.writeToParcel(mService.getUuid(), dest);
   dest.writeInt(mService.getType());
   dest.writeInt(mService.getCharacteristics().size());
   for (BluetoothGattCharacteristic characteristic : mService.getCharacteristics()) {
     BTCharacteristicProfile profile = new BTCharacteristicProfile(characteristic);
     profile.writeToParcel(dest, flags);
   }
 }