WorkflowLauncher.java 600 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.jcr.RepositoryException
 */
package com.day.cq.workflow.launcher;

import com.day.cq.workflow.launcher.ConfigEntry;
import java.util.List;
import javax.jcr.RepositoryException;

public interface WorkflowLauncher {
    public void addConfigEntry(ConfigEntry var1) throws RepositoryException;

    public void removeConfigEntry(String var1) throws RepositoryException;

    public List<ConfigEntry> getConfigEntries();

    public void editConfigEntry(String var1, ConfigEntry var2) throws RepositoryException;
}