Comment.java
1.08 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
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ConsumerType
* org.apache.sling.api.resource.Resource
* org.apache.sling.api.resource.ValueMap
*/
package com.adobe.granite.comments;
import aQute.bnd.annotation.ConsumerType;
import com.adobe.granite.comments.CommentCollection;
import java.io.InputStream;
import java.util.Calendar;
import java.util.Map;
import org.apache.sling.api.resource.Resource;
import org.apache.sling.api.resource.ValueMap;
@ConsumerType
public interface Comment {
public Resource addAttachment(String var1, InputStream var2, String var3);
public String getAnnotationData();
public Resource getAttachment(String var1);
public String getAuthorName();
public Map<String, Resource> getAttachmentMap();
public Calendar getCreated();
public Calendar getLastModified();
public String getMessage();
public CommentCollection getCollection();
public String getPath();
public ValueMap getProperties();
public void removeAttachment(String var1);
public void remove();
}