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

com.lyncode.jtwig.services.impl.url.IdentityUrlResolver Maven / Gradle / Ivy

The newest version!
package com.lyncode.jtwig.services.impl.url;

import com.lyncode.jtwig.services.api.url.ResourceUrlResolver;

public class IdentityUrlResolver implements ResourceUrlResolver {
    public static IdentityUrlResolver INSTANCE = new IdentityUrlResolver();

    private IdentityUrlResolver() {}

    @Override
    public String resolve(String prefix, String url, String suffix) {
        return prefix + url + suffix;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy