Bael 769 javers (#1543)

* BAEL-769 code for javers article

* BAEL-769 add more examples
This commit is contained in:
Tomasz Lelek
2017-04-02 23:54:28 +02:00
committed by adamd1985
parent 09329512cd
commit 44e63c68f2
5 changed files with 197 additions and 0 deletions
@@ -0,0 +1,11 @@
package com.baeldung.javers;
public class Address {
private String country;
public Address(String country) {
this.country = country;
}
}