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

com.airepublic.http.common.pathmatcher.TemplatePathMatch Maven / Gradle / Ivy

package com.airepublic.http.common.pathmatcher;

public class TemplatePathMatch {
    private final T config;
    private final UriTemplate uriTemplate;


    public TemplatePathMatch(final T config, final UriTemplate uriTemplate) {
        this.config = config;
        this.uriTemplate = uriTemplate;
    }


    public T getConfig() {
        return config;
    }


    public UriTemplate getUriTemplate() {
        return uriTemplate;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy