Project

General

Profile

1
package eu.dnetlib.openaire.user.pojos;
2

    
3

    
4
import java.sql.Timestamp;
5

    
6
public class RoleVerification {
7

    
8
    private String id;
9
    private String email;
10
    private String verificationCode;
11
    private String verificationType;
12
    private String type;
13
    private String entity;
14
    private Timestamp date;
15

    
16
    public RoleVerification() { }
17

    
18
    public String getId() {
19
        return id;
20
    }
21

    
22
    public void setId(String id) {
23
        this.id = id;
24
    }
25

    
26
    public String getEmail() {
27
        return email;
28
    }
29

    
30
    public void setEmail(String email) {
31
        this.email = email;
32
    }
33

    
34
    public String getVerificationCode() {
35
        return verificationCode;
36
    }
37

    
38
    public void setVerificationCode(String verificationCode) {
39
        this.verificationCode = verificationCode;
40
    }
41

    
42
    public String getVerificationType() {
43
        return verificationType;
44
    }
45

    
46
    public void setVerificationType(String verificationType) {
47
        this.verificationType = verificationType;
48
    }
49

    
50
    public String getType() {
51
        return type;
52
    }
53

    
54
    public void setType(String type) {
55
        this.type = type;
56
    }
57

    
58
    public String getEntity() {
59
        return entity;
60
    }
61

    
62
    public void setEntity(String entity) {
63
        this.entity = entity;
64
    }
65

    
66
    public Timestamp getDate() {
67
        return date;
68
    }
69

    
70
    public void setDate(Timestamp date) {
71
        this.date = date;
72
    }
73
}
74

    
(3-3/4)