Project

General

Profile

1
package eu.dnetlib.uoaadmintools.entities;
2

    
3
/**
4
 * Created by argirok on 5/3/2018.
5
 */
6
public class StatisticsStatus {
7
    Boolean show = true;
8
    Boolean showInDashboard = false;
9

    
10
    public Boolean getShow() {
11
        return show;
12
    }
13

    
14
    public void setShow(Boolean show) {
15
        this.show = show;
16
    }
17

    
18
    public Boolean getShowInDashboard() {
19
        return showInDashboard;
20
    }
21

    
22
    public void setShowInDashboard(Boolean showInDashboard) {
23
        this.showInDashboard = showInDashboard;
24
    }
25

    
26
    @Override
27
    public String toString() {
28
        return "StatisticsStatus{" +
29
                "show=" + show +
30
                ", showInDashboard=" + showInDashboard +
31
                '}';
32
    }
33
}
(16-16/18)