Guest User

Untitled

a guest
Aug 24th, 2016
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. @Entity
  2. @Table
  3. public class Data {
  4.  
  5. @Id
  6. private Integer id;
  7.  
  8. @Type(type = "encryptedString") // Need to enable for Encryption
  9. @Type(type = "org.hibernate.type.TextType") // Need to enable for Non Encryption
  10. private String data;
  11. }
Add Comment
Please, Sign In to add comment