public Terran findById(long id) {
    Terran terran;
    terran = repository.findOne(id);

    return terran;
  }