X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=enrichment-coordinator-service%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fenrichment%2Frepository%2FEiProducer.java;h=63e5d4c947b4f935d80ace7e9b446a687246b5fe;hb=08d483a877c24c3668f77dc8404ee54cd1e041ab;hp=99932a7237792fcb8eb112817497a3ccdd38cd74;hpb=0b0cb1fdcf166e438c6932f1eb0f29dafafbe635;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiProducer.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiProducer.java index 99932a72..63e5d4c9 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiProducer.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/repository/EiProducer.java @@ -32,22 +32,18 @@ public class EiProducer { private final Collection eiTypes; @Getter - private final String jobCreationCallbackUrl; - - @Getter - private final String jobDeletionCallbackUrl; + private final String jobCallbackUrl; @Getter private final String producerSupervisionCallbackUrl; private int unresponsiveCounter = 0; - public EiProducer(String id, Collection eiTypes, String jobCreationCallbackUrl, - String jobDeletionCallbackUrl, String producerSupervisionCallbackUrl) { + public EiProducer(String id, Collection eiTypes, String jobCallbackUrl, + String producerSupervisionCallbackUrl) { this.id = id; this.eiTypes = eiTypes; - this.jobCreationCallbackUrl = jobCreationCallbackUrl; - this.jobDeletionCallbackUrl = jobDeletionCallbackUrl; + this.jobCallbackUrl = jobCallbackUrl; this.producerSupervisionCallbackUrl = producerSupervisionCallbackUrl; }