Skip to content

Instantly share code, notes, and snippets.

@krams915
Created January 6, 2012 18:02
Show Gist options
  • Save krams915/1571677 to your computer and use it in GitHub Desktop.
Save krams915/1571677 to your computer and use it in GitHub Desktop.
package org.krams.domain;
import javax.persistence.Entity;
import javax.persistence.Id;
import javax.persistence.OneToOne;
@Entity(name="role")
public class Role {
@Id
private Long id;
@OneToOne
private User user;
private Integer role;
...getters/setters
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment