use of no.nav.arbeid.cv.avro.Melding in project veilarbportefolje by navikt.
the class CvServiceKafkaConsumerTest method populateCVEksistereKafkaTopic.
private void populateCVEksistereKafkaTopic(AktorId... aktoerIds) throws ExecutionException, InterruptedException {
for (AktorId aktoerId : aktoerIds) {
Melding cvMelding = new Melding();
cvMelding.setAktoerId(aktoerId.toString());
cvMelding.setMeldingstype(Meldingstype.ENDRE);
cvService.behandleKafkaMeldingLogikk(cvMelding);
}
}