IdentityNamespaceResolver.java 492 Bytes
/*
 * Decompiled with CFR 0_118.
 * 
 * Could not load the following classes:
 *  javax.jcr.NamespaceException
 */
package com.day.durbo;

import com.day.durbo.DurboNamespaceResolver;
import javax.jcr.NamespaceException;

public class IdentityNamespaceResolver
implements DurboNamespaceResolver {
    public String getURI(String prefix) throws NamespaceException {
        return prefix;
    }

    public String getPrefix(String uri) throws NamespaceException {
        return uri;
    }
}