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

com.lyncode.jtwig.functions.config.JsonConfiguration Maven / Gradle / Ivy

The newest version!
package com.lyncode.jtwig.functions.config;

import com.google.common.base.Function;
import com.lyncode.jtwig.functions.json.DefaultJsonMapper;

public class JsonConfiguration {
    private Function jsonMapper = new DefaultJsonMapper();

    public JsonConfiguration jsonMapper (Function mapper) {
        this.jsonMapper = mapper;
        return this;
    }

    public Function jsonMapper() {
        return jsonMapper;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy