Project

General

Profile

« Previous | Next » 

Revision 47245

View differences:

AccountAction.java
2 2

  
3 3
import java.io.Serializable;
4 4
import javax.persistence.*;
5
import java.math.BigInteger;
5 6
import java.sql.Timestamp;
6 7

  
7 8

  
......
15 16
	private static final long serialVersionUID = 1L;
16 17

  
17 18
	@Id
18
	@GeneratedValue(strategy=GenerationType.AUTO)
19 19
	@Column(columnDefinition = "text")
20
	private int id;
20
	private BigInteger id;
21 21
	
22 22
	private Timestamp date;
23 23

  
......
40 40
		this.user = user;
41 41
	}
42 42

  
43
	public int getId() {
43
	public BigInteger getId() {
44 44
		return id;
45 45
	}
46 46

  
47
	public void setId(int id) {
47
	public void setId(BigInteger id) {
48 48
		this.id = id;
49 49
	}
50 50

  

Also available in: Unified diff