Skip to content

Instantly share code, notes, and snippets.

@cortix
Created September 18, 2014 12:48
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 cortix/f5fbc0a137d6acfa9b40 to your computer and use it in GitHub Desktop.
Save cortix/f5fbc0a137d6acfa9b40 to your computer and use it in GitHub Desktop.
public class User1 extends DomainObject {
...
...
...
@Lob
private byte[] photo;
public byte[] getPhoto() {
return photo;
}
public void setPhoto(byte[] photo) {
this.photo = photo;
}
public User1() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment