Versionable.java 684 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  aQute.bnd.annotation.ProviderType
 */
package com.adobe.cq.dam.cfm;

import aQute.bnd.annotation.ProviderType;
import com.adobe.cq.dam.cfm.ContentFragmentException;
import com.adobe.cq.dam.cfm.VersionDef;
import com.adobe.cq.dam.cfm.VersionedContent;
import java.util.Iterator;

@ProviderType
public interface Versionable {
    public VersionDef createVersion(String var1, String var2) throws ContentFragmentException;

    public Iterator<VersionDef> listVersions() throws ContentFragmentException;

    public VersionedContent getVersionedContent(VersionDef var1) throws ContentFragmentException;
}