WorkflowLauncher.java 577 Bytes
/*
 * Decompiled with CFR 0_118.
 */
package com.adobe.granite.workflow.launcher;

import com.adobe.granite.workflow.WorkflowException;
import com.adobe.granite.workflow.launcher.ConfigEntry;
import java.util.Iterator;

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

    public void removeConfigEntry(String var1) throws WorkflowException;

    public Iterator<ConfigEntry> getConfigEntries() throws WorkflowException;

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