ContentFragmentManager.java 779 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.cq.dam.cfm;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.dam.cfm.ContentFragment;
import com.adobe.cq.dam.cfm.ContentFragmentException;
import java.util.List;
import java.util.Map;
import org.apache.sling.api.resource.Resource;

@ProviderType
public interface ContentFragmentManager {
    public ContentFragment create(Resource var1, Resource var2, String var3, String var4) throws ContentFragmentException;

    public Map<Resource, List<Resource>> resolveAssociatedContent(ContentFragment var1);

    public List<Resource> resolveAssociatedContentFlat(ContentFragment var1);
}