VaultAuthConfig.java
2.31 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
48
49
50
51
52
53
54
55
56
57
58
59
/*
* Decompiled with CFR 0_118.
*
* Could not load the following classes:
* org.apache.jackrabbit.vault.fs.config.AbstractConfig
* org.apache.jackrabbit.vault.fs.config.VaultAuthConfig
*/
package com.day.jcr.vault.fs.config;
import com.day.jcr.vault.fs.config.AbstractConfig;
import com.day.jcr.vault.fs.config.ConfigurationException;
import com.day.jcr.vault.fs.config.CredentialsConfig;
import java.io.IOException;
import org.xml.sax.ContentHandler;
import org.xml.sax.SAXException;
public class VaultAuthConfig
extends AbstractConfig {
public static final String ELEM_REPOSITORY = "repository";
public static final String ATTR_URI = "uri";
private org.apache.jackrabbit.vault.fs.config.VaultAuthConfig config;
public VaultAuthConfig(org.apache.jackrabbit.vault.fs.config.VaultAuthConfig config) {
super((org.apache.jackrabbit.vault.fs.config.AbstractConfig)config);
this.config = config;
}
public RepositoryConfig getRepoConfig(String uri) {
throw new UnsupportedOperationException("not supported anymore. use org.apache.jackrabbit.vault.fs.config.VaultAuthConfig instead.");
}
public void addRepositoryConfig(RepositoryConfig cfg) {
throw new UnsupportedOperationException("not supported anymore. use org.apache.jackrabbit.vault.fs.config.VaultAuthConfig instead.");
}
public boolean load() throws IOException, ConfigurationException {
throw new UnsupportedOperationException("not supported anymore. use org.apache.jackrabbit.vault.fs.config.VaultAuthConfig instead.");
}
public void save() throws IOException {
this.config.save();
}
public static class RepositoryConfig {
public CredentialsConfig getCredsConfig() {
throw new UnsupportedOperationException("not supported anymore. use org.apache.jackrabbit.vault.fs.config.VaultAuthConfig instead.");
}
public void addCredsConfig(CredentialsConfig creds) {
throw new UnsupportedOperationException("not supported anymore. use org.apache.jackrabbit.vault.fs.config.VaultAuthConfig instead.");
}
public void write(ContentHandler handler) throws SAXException {
throw new UnsupportedOperationException("not supported anymore. use org.apache.jackrabbit.vault.fs.config.VaultAuthConfig instead.");
}
}
}