shreyasm 6cabd68be5 BAEL-2000 - Shreyas Mahajan - Adding a project for demonstrating Spring Boot Jib Maven Plugin (#5375)
* 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
2018-10-17 16:09:26 +02:00

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;
}
}