CRX3SessionImpl.java
1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* com.day.crx.CRXSession
* com.day.crx.io.CRXExportHandler
* com.day.crx.io.CRXImportHandler
* javax.jcr.RepositoryException
* javax.jcr.UnsupportedRepositoryOperationException
* org.apache.jackrabbit.oak.jcr.session.SessionContext
* org.apache.jackrabbit.oak.jcr.session.SessionImpl
*/
package com.adobe.granite.repository.impl;
import com.day.crx.CRXSession;
import com.day.crx.io.CRXExportHandler;
import com.day.crx.io.CRXImportHandler;
import javax.jcr.RepositoryException;
import javax.jcr.UnsupportedRepositoryOperationException;
import javax.transaction.xa.XAResource;
import org.apache.jackrabbit.oak.jcr.session.SessionContext;
import org.apache.jackrabbit.oak.jcr.session.SessionImpl;
class CRX3SessionImpl
extends SessionImpl
implements CRXSession {
CRX3SessionImpl(SessionContext sessionContext) {
super(sessionContext);
}
public XAResource getXAResource() {
return null;
}
public CRXExportHandler getExportHandler() throws RepositoryException {
throw new UnsupportedRepositoryOperationException();
}
public CRXImportHandler getImportHandler() throws RepositoryException {
throw new UnsupportedRepositoryOperationException();
}
public CRXSession getSession(String workspaceName) throws RepositoryException {
throw new UnsupportedRepositoryOperationException();
}
}