View Javadoc

1   /*
2    * HibernateUser.java
3    *
4    * Created on June 15, 2005, 1:06 PM
5    *
6    * To change this template, choose Tools | Options and locate the template under
7    * the Source Creation and Management node. Right-click the template and choose
8    * Open. You can then make changes to the template in the Source Editor.
9    */
10  
11  package gov.bnl.gums.db;
12  
13  import java.util.Date;
14  
15  /**
16   *
17   * @author Jay Packard
18   */
19  public class HibernateConfig {
20      private Long id;
21      private String xml;
22      private Date timestamp;
23      private Boolean current;
24      private String name;
25      
26  	public Long getId() {
27  		return id;
28  	}
29  	public void setId(Long id) {
30  		this.id = id;
31  	}
32  	public String getXml() {
33  		return xml;
34  	}
35  	public void setXml(String xml) {
36  		this.xml = xml;
37  	}
38  	public Date getTimestamp() {
39  		return timestamp;
40  	}
41  	public void setTimestamp(Date timestamp) {
42  		this.timestamp = timestamp;
43  	}
44  	public Boolean getCurrent() {
45  		return current;
46  	}
47  	public void setCurrent(Boolean current) {
48  		this.current = current;
49  	}
50  	public String getName() {
51  		return name;
52  	}
53  	public void setName(String name) {
54  		this.name = name;
55  	}
56  }
57