LiveAction.java 801 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.sling.api.resource.ResourceResolver
 */
package com.day.cq.wcm.api.msm;

import com.day.cq.wcm.api.WCMException;
import com.day.cq.wcm.api.msm.ActionConfig;
import com.day.cq.wcm.api.msm.LiveRelationship;
import org.apache.sling.api.resource.ResourceResolver;

@Deprecated
public interface LiveAction {
    public String getName();

    public void execute(ResourceResolver var1, LiveRelationship var2, ActionConfig var3, boolean var4) throws WCMException;

    public void execute(ResourceResolver var1, LiveRelationship var2, ActionConfig var3, boolean var4, boolean var5) throws WCMException;

    public int getRank();

    public String[] getPropertiesNames();

    public String getParameterName();
}