X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=blobdiff_plain;f=dmaap-client%2Fsrc%2Fmain%2Fjava%2Forg%2Fopendaylight%2Ftransportpce%2Fdmaap%2Fclient%2Fresource%2FEventsApi.java;h=e6f167824b5fe5be45a55bec1e35c6e6384bd72f;hb=274148a8d813140f86e1f9770ba992b072c1a5cd;hp=b1a5ae03659151a58c1238591a8bb6f9703eb5d6;hpb=c3a98ef9475e9ce8ec866978df75394c3df639bf;p=transportpce.git diff --git a/dmaap-client/src/main/java/org/opendaylight/transportpce/dmaap/client/resource/EventsApi.java b/dmaap-client/src/main/java/org/opendaylight/transportpce/dmaap/client/resource/EventsApi.java index b1a5ae036..e6f167824 100644 --- a/dmaap-client/src/main/java/org/opendaylight/transportpce/dmaap/client/resource/EventsApi.java +++ b/dmaap-client/src/main/java/org/opendaylight/transportpce/dmaap/client/resource/EventsApi.java @@ -14,7 +14,7 @@ import javax.ws.rs.PathParam; import javax.ws.rs.Produces; import javax.ws.rs.core.MediaType; import org.opendaylight.transportpce.dmaap.client.resource.model.CreatedEvent; -import org.opendaylight.yang.gen.v1.nbi.notifications.rev210628.PublishNotificationService; +import org.opendaylight.yang.gen.v1.nbi.notifications.rev210813.PublishNotificationProcessService; @Path("/events") public interface EventsApi { @@ -23,6 +23,6 @@ public interface EventsApi { @Consumes(MediaType.APPLICATION_JSON) @Produces(MediaType.APPLICATION_JSON) @Path("/{topic}") - CreatedEvent sendEvent(@PathParam("topic") String topic, PublishNotificationService event); + CreatedEvent sendEvent(@PathParam("topic") String topic, PublishNotificationProcessService event); }