ContentBuilder.java 978 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.jcr.Session
 */
package com.day.cq.replication;

import com.day.cq.replication.ReplicationAction;
import com.day.cq.replication.ReplicationContent;
import com.day.cq.replication.ReplicationContentFactory;
import com.day.cq.replication.ReplicationException;

import javax.jcr.Session;
import java.util.Map;

public interface ContentBuilder {
    public static final String PROPERTY_NAME = "name";
    public static final String PARAMETER_CONTENT_FILER_CHAIN = ContentBuilder.class.getName() + "/ReplicationContentFilterChain";

    public ReplicationContent create(Session var1, ReplicationAction var2, ReplicationContentFactory var3) throws ReplicationException;

    public ReplicationContent create(Session var1, ReplicationAction var2, ReplicationContentFactory var3, Map<String, Object> var4) throws ReplicationException;

    public String getName();

    public String getTitle();
}