CacheUpdateImpl.java
1.47 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
/*
* Decompiled with CFR 0_118.
*/
package com.adobe.cq.mobile.appcache.impl;
import com.adobe.cq.mobile.appcache.impl.CacheUpdate;
import java.util.Calendar;
public class CacheUpdateImpl
implements CacheUpdate {
private Calendar createdTS;
private String createdByUserId;
private String title;
private String description;
private Calendar publishedTS;
private String pubishedByUserId;
private String path;
public CacheUpdateImpl(Calendar createdTS, String createdByUserId, String title, String description, Calendar publishedTS, String publishedByUserId, String path) {
this.createdTS = createdTS;
this.createdByUserId = createdByUserId;
this.title = title;
this.description = description;
this.publishedTS = publishedTS;
this.pubishedByUserId = publishedByUserId;
this.path = path;
}
@Override
public Calendar getCreated() {
return this.createdTS;
}
@Override
public String getCreatedBy() {
return this.createdByUserId;
}
@Override
public String getTitle() {
return this.title;
}
@Override
public String getDescription() {
return this.description;
}
@Override
public Calendar getLastPublished() {
return this.publishedTS;
}
@Override
public String getLastPublishedBy() {
return this.pubishedByUserId;
}
@Override
public String getPath() {
return this.path;
}
}