ResourceCollection.java
700 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.Node
* javax.jcr.RepositoryException
*/
package com.day.cq.workflow.collection;
import java.util.List;
import javax.jcr.Node;
import javax.jcr.RepositoryException;
public interface ResourceCollection {
public static final String NN_FILTER = "filter";
public static final String PN_FILTER_ROOT = "root";
public List<Node> list(String[] var1) throws RepositoryException;
public void add(Node var1);
public void remove(Node var1);
public void startRecording(String var1, String var2, String[] var3);
public void stopRecording(String var1);
public String getPath();
}