Project

General

Profile

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

    
3

    
4

    
5
import java.util.Date;
6

    
7
public class RepositorySummaryInfo{
8

    
9
    String id;
10
    String repositoryName;
11
    String logoURL;
12
    int recordsCollected;
13
    Date lastIndexedVersion;
14
    long enrichmentEvents;
15
    String totalViews;
16
    String totalDownloads;
17

    
18
    public RepositorySummaryInfo() {
19
    }
20

    
21
    public String getId() {
22
        return id;
23
    }
24

    
25
    public void setId(String id) {
26
        this.id = id;
27
    }
28

    
29
    public String getRepositoryName() {
30
        return repositoryName;
31
    }
32

    
33
    public void setRepositoryName(String repositoryName) {
34
        this.repositoryName = repositoryName;
35
    }
36

    
37
    public String getLogoURL() {
38
        return logoURL;
39
    }
40

    
41
    public void setLogoURL(String logoURL) {
42
        this.logoURL = logoURL;
43
    }
44

    
45
    public int getRecordsCollected() {
46
        return recordsCollected;
47
    }
48

    
49
    public void setRecordsCollected(int recordsCollected) {
50
        this.recordsCollected = recordsCollected;
51
    }
52

    
53
    public Date getLastIndexedVersion() {
54
        return lastIndexedVersion;
55
    }
56

    
57
    public void setLastIndexedVersion(Date lastIndexedVersion) {
58
        this.lastIndexedVersion = lastIndexedVersion;
59
    }
60

    
61
    public long getEnrichmentEvents() {
62
        return enrichmentEvents;
63
    }
64

    
65
    public void setEnrichmentEvents(long enrichmentEvents) {
66
        this.enrichmentEvents = enrichmentEvents;
67
    }
68

    
69
    public String getTotalViews() {
70
        return totalViews;
71
    }
72

    
73
    public void setTotalViews(String totalViews) {
74
        this.totalViews = totalViews;
75
    }
76

    
77
    public String getTotalDownloads() {
78
        return totalDownloads;
79
    }
80

    
81
    public void setTotalDownloads(String totalDownloads) {
82
        this.totalDownloads = totalDownloads;
83
    }
84
}
(21-21/32)