Project

General

Profile

1
package eu.dnetlib.repo.manager.domain.dto;
2

    
3
import java.util.Date;
4

    
5
public class RepositoryTerms {
6

    
7
    private String id;
8
    private String name;
9
    private Boolean consentTermsOfUse;
10
    private Boolean fullTextDownload;
11
    private Date consentTermsOfUseDate;
12
    private Date lastConsentTermsOfUseDate;
13

    
14
    public RepositoryTerms() {
15
    }
16

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

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

    
25
    public String getName() {
26
        return name;
27
    }
28

    
29
    public void setName(String name) {
30
        this.name = name;
31
    }
32

    
33
    public Boolean getConsentTermsOfUse() {
34
        return consentTermsOfUse;
35
    }
36

    
37
    public void setConsentTermsOfUse(Boolean consentTermsOfUse) {
38
        this.consentTermsOfUse = consentTermsOfUse;
39
    }
40

    
41
    public Boolean getFullTextDownload() {
42
        return fullTextDownload;
43
    }
44

    
45
    public void setFullTextDownload(Boolean fullTextDownload) {
46
        this.fullTextDownload = fullTextDownload;
47
    }
48

    
49
    public Date getConsentTermsOfUseDate() {
50
        return consentTermsOfUseDate;
51
    }
52

    
53
    public void setConsentTermsOfUseDate(Date consentTermsOfUseDate) {
54
        this.consentTermsOfUseDate = consentTermsOfUseDate;
55
    }
56

    
57
    public Date getLastConsentTermsOfUseDate() {
58
        return lastConsentTermsOfUseDate;
59
    }
60

    
61
    public void setLastConsentTermsOfUseDate(Date lastConsentTermsOfUseDate) {
62
        this.lastConsentTermsOfUseDate = lastConsentTermsOfUseDate;
63
    }
64
}
(1-1/3)