2016-07-29 11:55:35 +02:00
|
|
|
package com.baeldung.immutable;
|
|
|
|
|
|
|
|
import org.immutables.value.Value;
|
|
|
|
|
|
|
|
@Value.Immutable
|
2016-07-30 10:50:47 +02:00
|
|
|
public abstract class Person {
|
|
|
|
abstract String getName();
|
|
|
|
abstract Integer getAge();
|
2016-07-29 11:55:35 +02:00
|
|
|
}
|