1 package demo.drupal.persistence; 2 3 import javax.persistence.Entity; 4 import javax.persistence.Table; 5 6 @Entity 7 @Table(name="blocks") 8 public class Block { 9 23 24 private String module; 25 private String delta; 26 private String theme; 27 private int status; 28 private int weight; 29 private String region; 30 private int custom; 31 private int throttle; 32 private int visibility; 33 private String pages; 34 } 35 | Popular Tags |