Child: [85c2d9] (diff)

Download this file

DocSavedEventImpl.java    52 lines (37 with data), 940 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
package de.kuei.metafora.gwt.smack.shared.event.documents;
import de.novanic.eventservice.client.event.Event;
public class DocSavedEventImpl implements DocSavedEvent, Event {
private static final long serialVersionUID = 8276702274574701071L;
private String docId;
private String docName;
private long timestamp;
public DocSavedEventImpl() {
}
public DocSavedEventImpl(String docId, String mapName, long timestamp,
String versionNumber) {
this.docId = docId;
this.docName = mapName;
this.timestamp = timestamp;
}
@Override
public String getDocId() {
return docId;
}
public void setDocId(String docId) {
this.docId = docId;
}
@Override
public String getDocName() {
return docName;
}
public void setDocName(String docName) {
this.docName = docName;
}
@Override
public long getTimestamp() {
return timestamp;
}
public void setTimestamp(long timestamp) {
this.timestamp = timestamp;
}
}