PrivilegeInstaller.java 592 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.jcr.RepositoryException
 *  javax.jcr.security.Privilege
 */
package com.day.jcr.vault.fs.spi;

import com.day.jcr.vault.fs.spi.PrivilegeDefinitions;
import com.day.jcr.vault.fs.spi.ProgressTracker;
import java.io.IOException;
import java.util.Collection;
import javax.jcr.RepositoryException;
import javax.jcr.security.Privilege;

public interface PrivilegeInstaller {
    public Collection<Privilege> install(ProgressTracker var1, PrivilegeDefinitions var2) throws IOException, RepositoryException;
}