CommentManager.java
671 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* aQute.bnd.annotation.ProviderType
* org.apache.sling.api.resource.Resource
*/
package com.adobe.granite.comments;
import aQute.bnd.annotation.ProviderType;
import com.adobe.granite.comments.CommentCollection;
import org.apache.sling.api.resource.Resource;
@ProviderType
public interface CommentManager {
public <C extends CommentCollection> C getCollection(Resource var1, Class<C> var2);
public <C extends CommentCollection> C getOrCreateCollection(Resource var1, Class<C> var2);
public <C extends CommentCollection> C createCollection(Resource var1, Class<C> var2);
}