ContentVariation.java 760 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.SyncStatus;
import com.adobe.cq.dam.cfm.Versionable;

@ProviderType
public interface ContentVariation
extends Versionable {
    public String getName();

    public String getTitle();

    public String getDescription();

    public String getContentType();

    public String getContent();

    public void setContent(String var1, String var2) throws ContentFragmentException;

    public SyncStatus getSyncStatus();

    public void synchronize() throws ContentFragmentException;
}