Project

General

Profile

« Previous | Next » 

Revision 54842

Meerge dev-api to trunk ( -r50861:54841 )

View differences:

SimpleSubscriptionDesc.java
2 2

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

  
5
import java.util.Date;
6

  
5 7
/**
6 8
 * Created by stefanos on 10-Mar-17.
7 9
 */
......
11 13
    private String datasource;
12 14
    private String topic;
13 15
    private long count;
16
    private Date creationDate;
17
    private Date lastNotificationDate;
14 18

  
15 19
    public SimpleSubscriptionDesc() {
16 20
    }
......
54 58
        this.count = count;
55 59
    }
56 60

  
61
    public Date getCreationDate() {
62
        return creationDate;
63
    }
64

  
65
    public void setCreationDate(Date creationDate) {
66
        this.creationDate = creationDate;
67
    }
68

  
69
    public Date getLastNotificationDate() {
70
        return lastNotificationDate;
71
    }
72

  
73
    public void setLastNotificationDate(Date lastNotificationDate) {
74
        this.lastNotificationDate = lastNotificationDate;
75
    }
57 76
}

Also available in: Unified diff