CRXSession.java
945 Bytes
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* javax.jcr.AccessDeniedException
* javax.jcr.NoSuchWorkspaceException
* javax.jcr.RepositoryException
* org.apache.jackrabbit.api.JackrabbitSession
* org.apache.jackrabbit.api.XASession
*/
package com.day.crx;
import com.day.crx.io.CRXExportHandler;
import com.day.crx.io.CRXImportHandler;
import org.apache.jackrabbit.api.JackrabbitSession;
import org.apache.jackrabbit.api.XASession;
import javax.jcr.AccessDeniedException;
import javax.jcr.NoSuchWorkspaceException;
import javax.jcr.RepositoryException;
public interface CRXSession
extends JackrabbitSession,
XASession {
public CRXExportHandler getExportHandler() throws RepositoryException;
public CRXImportHandler getImportHandler() throws RepositoryException;
public CRXSession getSession(String var1) throws AccessDeniedException, NoSuchWorkspaceException, RepositoryException;
}