Registry.java 1.34 KB
/*
 * 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.");
    }
}