Last active
August 29, 2015 14:23
-
-
Save seregasheypak/cdf1fa33a716c351a946 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 lombok.Builder; | |
import lombok.Data; | |
import lombok.NonNull; | |
@Data | |
public class Visitor { | |
private String visitorId; | |
private Integer siteId; | |
private Long visitTs; | |
public Visitor(){} | |
@Builder | |
public Visitor( @NonNull String visitorId, @NonNull Integer siteId, Long visitTs){ | |
this.visitorId = visitorId; | |
this.siteId = siteId; | |
this.visitTs = visitTs; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment