Registry.java
1.34 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
/*
* Decompiled with CFR 0_118.
*/
package com.day.jcr.vault.fs.config;
import com.day.jcr.vault.fs.api.Aggregator;
import com.day.jcr.vault.fs.api.ArtifactHandler;
/*
* This class specifies class file version 49.0 but uses Java 6 signatures. Assumed Java 6.
*/
public class Registry {
public static Registry instance;
public static synchronized Registry getInstance() {
if (instance == null) {
instance = new Registry();
}
return instance;
}
public Class<? extends Aggregator> getAggregatorClass(String type) {
throw new UnsupportedOperationException("Registry is not longer supported. use org.apache.jackrabbit.vault.fs.config.Registry instead.");
}
public Class<? extends ArtifactHandler> getHandlerClass(String type) {
throw new UnsupportedOperationException("Registry is not longer supported. use org.apache.jackrabbit.vault.fs.config.Registry instead.");
}
public Aggregator createAggregator(String type) {
throw new UnsupportedOperationException("Registry is not longer supported. use org.apache.jackrabbit.vault.fs.config.Registry instead.");
}
public ArtifactHandler createHandler(String type) {
throw new UnsupportedOperationException("Registry is not longer supported. use org.apache.jackrabbit.vault.fs.config.Registry instead.");
}
}