98564a5c10b65524b26128c97ba163d3305cf168
[JavaForFun] /
1 package de.example.spring.kafka;
2
3 public class Product {
4         private String name;
5         private String description;
6         
7         public Product(String name, String description) {
8                 this.name = name;
9                 this.description = description;
10         }
11
12         public String getName() {
13                 return this.name;
14         }
15         
16         public String getDescription() {
17                 return this.description;
18         }
19 }