BAEL-7374 - Review comments.

This commit is contained in:
Amol Gote 2024-02-29 23:02:56 -05:00
parent a40222a45a
commit 0a2d6823de
3 changed files with 0 additions and 7 deletions

View File

@ -1,8 +1,6 @@
package com.baeldung.spring.kafka.start.stop.consumer;
public class Constants {
public static final String MULTI_PARTITION_TOPIC = "multi_partition_topic";
public static final String LISTENER_ID = "listener-id-1";
}

View File

@ -5,9 +5,7 @@ import org.springframework.boot.autoconfigure.SpringBootApplication;
@SpringBootApplication
public class StartStopConsumerApplication {
public static void main(String[] args) {
SpringApplication.run(StartStopConsumerApplication.class, args);
}
}

View File

@ -1,10 +1,8 @@
package com.baeldung.spring.kafka.start.stop.consumer;
public class UserEvent {
private String userEventId;
public UserEvent() {
}
@ -19,5 +17,4 @@ public class UserEvent {
public void setUserEventId(String userEventId) {
this.userEventId = userEventId;
}
}