Reference.java
874 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.sling.api.resource.Resource
*/
package com.day.cq.wcm.api.reference;
import org.apache.sling.api.resource.Resource;
public class Reference {
private final String type;
private final String name;
private final Resource resource;
private final long lastModified;
public Reference(String type, String name, Resource resource, long lastModified) {
this.type = type;
this.name = name;
this.resource = resource;
this.lastModified = lastModified;
}
public String getType() {
return this.type;
}
public String getName() {
return this.name;
}
public Resource getResource() {
return this.resource;
}
public long getLastModified() {
return this.lastModified;
}
}