All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.hal4j.resources.curie.TemplateCurieResolver Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.github.hal4j.resources.curie;


import com.github.hal4j.uritemplate.URITemplate;

import static com.github.hal4j.uritemplate.URIFactory.templateUri;

public class TemplateCurieResolver implements CurieResolver {

    private URITemplate template;

    public static TemplateCurieResolver curie(String templateString) {
        return new TemplateCurieResolver(templateUri(templateString));
    }

    public TemplateCurieResolver(URITemplate template) {
        this.template = template;
    }

    @Override
    public URITemplate resolve(String namespace) {
        return template.expand("ns", namespace);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy