Last active
February 28, 2019 08:42
-
-
Save marcosabel/69c41e3c657257135b2dc4b9576d0d89 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import java.util.Calendar; | |
import lombok.Builder; | |
import lombok.Value; | |
@Builder | |
@Value | |
public class JacksonExample { | |
private String fieldOne; | |
private String fieldTwo; | |
private Calendar someDate; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment