Project

General

Profile

1
package eu.dnetlib.goldoa.domain;
2

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4

    
5
import javax.persistence.Column;
6
import javax.persistence.Entity;
7
import javax.persistence.Id;
8

    
9

    
10
/**
11
 * The persistent class for the help database table.
12
 * 
13
 */
14
@Entity
15
public class Help implements IsSerializable {
16
	private static final long serialVersionUID = 1L;
17
	@Id
18
	@Column(columnDefinition = "text")
19
	private String id;
20
	@Column(columnDefinition = "text")
21
	private String name;
22
	@Column(columnDefinition = "text")
23
	private String text;
24

    
25
	public Help() {
26
	}
27

    
28
	public String getId() {
29
		return this.id;
30
	}
31

    
32
	public void setId(String id) {
33
		this.id = id;
34
	}
35

    
36
	public String getName() {
37
		return this.name;
38
	}
39

    
40
	public void setName(String name) {
41
		this.name = name;
42
	}
43

    
44
	public String getText() {
45
		return this.text;
46
	}
47

    
48
	public void setText(String text) {
49
		this.text = text;
50
	}
51

    
52
}
(20-20/52)