Skip to content

Commit

Permalink
#1149 - [Search][Recommendation] Introduce Kafka Stream to aggregate …
Browse files Browse the repository at this point in the history
…all product data.

-implement kafka stream application to capture all changes related to product
  • Loading branch information
Phuoc Nguyen committed Oct 29, 2024
1 parent 3145ba4 commit 25d6d7f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ public abstract class BaseDto extends BaseMetaDataDto {
* @param id the unique identifier for the entity
* @param name the name associated with the entity
*/
public BaseDto(String op, Long ts, Long id, String name) {
protected BaseDto(String op, Long ts, Long id, String name) {
super(op, ts);
this.id = id;
this.name = name;
Expand Down

0 comments on commit 25d6d7f

Please sign in to comment.