Skip to content

Instantly share code, notes, and snippets.

@eevans
Last active December 28, 2015 10:59
Show Gist options
  • Select an option

  • Save eevans/7490307 to your computer and use it in GitHub Desktop.

Select an option

Save eevans/7490307 to your computer and use it in GitHub Desktop.
import java.util.UUID;
import com.opennms.lucidity.annotations.*;
@Entity
public class User {
@Id
UUID userId;
@Column
String emailAddress;
@Column
String givenName;
@Column
String surname;
@Column
Date birthday;
// Setters, getters, etc
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment