Project

General

Profile

1
package eu.dnetlib.repo.manager.service.shared;
2

    
3
import com.google.gwt.user.client.rpc.IsSerializable;
4

    
5
import java.util.Date;
6

    
7
/**
8
 * Created by stefania on 12/19/16.
9
 */
10
public class PiwikInfo implements IsSerializable {
11

    
12
    private String repositoryId;
13
    private String siteId;
14
    private Date creationDate;
15

    
16
    public PiwikInfo() {
17

    
18
    }
19

    
20
    public PiwikInfo(String repositoryId, String siteId, Date creationDate) {
21
        this.repositoryId = repositoryId;
22
        this.siteId = siteId;
23
        this.creationDate = creationDate;
24
    }
25

    
26
    public String getRepositoryId() {
27
        return repositoryId;
28
    }
29

    
30
    public void setRepositoryId(String repositoryId) {
31
        this.repositoryId = repositoryId;
32
    }
33

    
34
    public String getSiteId() {
35
        return siteId;
36
    }
37

    
38
    public void setSiteId(String siteId) {
39
        this.siteId = siteId;
40
    }
41

    
42
    public Date getCreationDate() {
43
        return creationDate;
44
    }
45

    
46
    public void setCreationDate(Date creationDate) {
47
        this.creationDate = creationDate;
48
    }
49
}
(8-8/17)