Project

General

Profile

1
package eu.dnetlib.openaire.user;
2

    
3
import java.io.Serializable;
4

    
5
/**
6
 * Created by sofia on 8/11/2016.
7
 */
8
public class Role implements Serializable
9
{
10
    private int id;
11
    private String role;
12

    
13
    public Role() {
14

    
15
    }
16

    
17
    public Role(int id) {
18
        this.id = id;
19
    }
20

    
21
    public Role(String role) {
22
        this.role = role;
23
    }
24

    
25
    public Role(int id, String role){
26

    
27
        this.id = id;
28
        this.role = role;
29
    }
30

    
31
    public int getId(){
32
        return id;
33
    }
34

    
35
    public void setId(int id){
36
        this.id = id;
37
    }
38

    
39
    public String getRole() {
40
        return role;
41
    }
42

    
43
    public void setRole(String role) {
44
        this.role = role;
45
    }
46

    
47
}
(4-4/6)