Project

General

Profile

1
package eu.dnetlib.openaire.user;
2

    
3

    
4
import java.sql.Timestamp;
5

    
6
/**
7
 * Created by sofia on 3/10/2017.
8
 */
9
public class UserVerification {
10

    
11
    private int id;
12
    private String username;
13
    private String verificationCode;
14
    private Timestamp date;
15

    
16
    public UserVerification() {
17

    
18
    }
19

    
20
    public UserVerification(String username) {
21
        this.username = username;
22
    }
23

    
24
    public int getId(){
25
        return id;
26
    }
27

    
28
    public void setId(int id){
29
        this.id = id;
30
    }
31

    
32
    public String getUsername() {
33
        return username;
34
    }
35

    
36
    public void setUsername(String username) {
37
        this.username = username;
38
    }
39

    
40
    public String getVerificationCode() {
41
        return verificationCode;
42
    }
43

    
44
    public void setVerificationCode(String verificationCode) {
45
        this.verificationCode = verificationCode;
46
    }
47

    
48
    public Timestamp getDate() {
49
        return date;
50
    }
51

    
52
    public void setDate(Timestamp date) {
53
        this.date = date;
54
    }
55

    
56
}
57

    
(6-6/6)