1 package demo.drupal.persistence; 2 3 import javax.persistence.Entity; 4 import javax.persistence.Id; 5 import javax.persistence.Table; 6 7 @Entity 8 @Table(name="system") 9 public class System { 10 23 24 @Id 25 private String filename; 26 private String name; 27 private String type; 28 private String description; 29 private int status; 30 private int throttle; 31 private int bootstrap; 32 private int schema_version; 33 } 34 | Popular Tags |