* BAEL-2000 - Shreyas Mahajan - Adding a project for demonstrating Spring Boot Jib Maven Plugin * BAEL-2000 - Shreyas Mahajan - Incorporating the changes * BAEL-2000 - Shreyas Mahajan - Renaming the module from spring-boot-jib to jib
20 lines
334 B
Java
20 lines
334 B
Java
package com.baeldung;
|
|
|
|
public class Greeting {
|
|
|
|
private final long id;
|
|
private final String content;
|
|
|
|
public Greeting(long id, String content) {
|
|
this.id = id;
|
|
this.content = content;
|
|
}
|
|
|
|
public long getId() {
|
|
return id;
|
|
}
|
|
|
|
public String getContent() {
|
|
return content;
|
|
}
|
|
} |