ProcessingComponentConfigurationWrapper.java 931 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  org.apache.sling.api.resource.ValueMap
 *  org.apache.sling.rewriter.ProcessingComponentConfiguration
 */
package com.day.cq.rewriter.processor.impl;

import com.day.cq.rewriter.processor.ProcessingComponentConfiguration;
import java.util.Map;
import org.apache.sling.api.resource.ValueMap;

public class ProcessingComponentConfigurationWrapper
implements ProcessingComponentConfiguration {
    private final org.apache.sling.rewriter.ProcessingComponentConfiguration delegatee;

    public ProcessingComponentConfigurationWrapper(org.apache.sling.rewriter.ProcessingComponentConfiguration pc) {
        this.delegatee = pc;
    }

    @Override
    public Map<String, Object> getConfiguration() {
        return this.delegatee.getConfiguration();
    }

    @Override
    public String getType() {
        return this.delegatee.getType();
    }
}