1 package demo.drupal.persistence; 2 3 import javax.persistence.Id; 4 import javax.persistence.Entity; 5 import javax.persistence.Table; 6 7 import java.util.Date ; 8 9 @Entity 10 @Table(name="watchdog") 11 public class Watchdog { 12 27 28 @Id 29 private int wid; 30 private int uid; 31 private String type; 32 private String message; 33 private int severity; 34 private String link; 35 private String location; 36 private String referer; 37 private String hostname; 38 private Date timestamp; 39 } 40 | Popular Tags |