ResourceCollection.java 555 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.jcr.Node
 *  javax.jcr.RepositoryException
 */
package com.adobe.granite.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 remove(Node var1);

    public String getPath();
}