Mounter.java 1.27 KB
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.jcr.Credentials
 *  javax.jcr.Repository
 *  javax.jcr.RepositoryException
 *  javax.jcr.Session
 */
package com.day.jcr.vault.fs;

import com.day.jcr.vault.fs.api.RepositoryAddress;
import com.day.jcr.vault.fs.api.VaultFileSystem;
import com.day.jcr.vault.fs.api.VaultFsConfig;
import com.day.jcr.vault.fs.api.WorkspaceFilter;
import java.io.IOException;
import javax.jcr.Credentials;
import javax.jcr.Repository;
import javax.jcr.RepositoryException;
import javax.jcr.Session;

public final class Mounter {
    public static VaultFileSystem mount(VaultFsConfig config, WorkspaceFilter wspFilter, RepositoryAddress mountpoint, String rootPath, Session session) throws RepositoryException, IOException {
        throw new UnsupportedOperationException("Mounter is not longer supported. use the org.apache.jackrabbit.filevault counterpart.");
    }

    public static VaultFileSystem mount(VaultFsConfig config, WorkspaceFilter wspFilter, Repository rep, Credentials credentials, RepositoryAddress mountpoint, String rootPath) throws RepositoryException, IOException {
        throw new UnsupportedOperationException("Mounter is not longer supported. use the org.apache.jackrabbit.filevault counterpart.");
    }
}