private ActivationKey findKey(String activationKeyId) {
    ActivationKey key = activationKeyCurator.find(activationKeyId);

    if (key == null) {
      throw new BadRequestException(
          i18n.tr("ActivationKey with id {0} could not be found.", activationKeyId));
    }
    return key;
  }