Skip to content

Instantly share code, notes, and snippets.

@th0j
Created June 9, 2017 03:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save th0j/3dba7afeebff7b331d25e3841faf9bfe to your computer and use it in GitHub Desktop.
Save th0j/3dba7afeebff7b331d25e3841faf9bfe to your computer and use it in GitHub Desktop.
User.java with Lombok library
import lombok.Getter;
import lombok.Setter;
public class User implements java.io.Serializable{
@Setter @Getter
public String username;
@Setter @Getter
public String email;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment