package com.commafeed.model; import java.io.Serializable; import javax.persistence.Column; import javax.persistence.Entity; import javax.persistence.GeneratedValue; import javax.persistence.GenerationType; import javax.persistence.Id; import javax.persistence.Table; @Entity @Table(name = "USERS") @SuppressWarnings("serial") public class User implements Serializable { @Id @GeneratedValue(strategy = GenerationType.AUTO) private Long id; @Column(length = 32) private String name; @Column(length = 256) private byte[] password; @Column(length = 8) private byte[] salt; public String getName() { return name; } public void setName(String name) { this.name = name; } public byte[] getPassword() { return password; } public void setPassword(byte[] password) { this.password = password; } public Long getId() { return id; } public void setId(Long id) { this.id = id; } public byte[] getSalt() { return salt; } public void setSalt(byte[] salt) { this.salt = salt; } }