document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. package javax.persistence;
  2.  
  3. @Target({METHOD, FIELD}) @Retention(RUNTIME)
  4. public @interface GeneratedValue
  5. {
  6.    GenerationType strategy( ) default AUTO;
  7.    String generator( ) default "";
  8. }
  9.  
  10. public enum GenerationType
  11. {
  12.    TABLE, SEQUENCE, IDENTITY, AUTO
  13. }
');