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

com.github.lusoalex.chainr.ChainrBuilder Maven / Gradle / Ivy

Go to download

This is a json to json transformation tool for vert.x. It use original com.bazaarvoice.jolt:jolt as a proxy.

There is a newer version: 0.2
Show newest version
package com.github.lusoalex.chainr;


import java.util.List;
import java.util.Map;

import io.vertx.core.json.JsonArray;
import com.github.lusoalex.Chainr;

/**
 * Created by Alexandre on 30/11/2016.
 */
public class ChainrBuilder {

    final private List> specs;

    public ChainrBuilder(JsonArray specs) {
        this.specs = specs.getList();
    }

    public Chainr build() {
        return new Chainr(new com.bazaarvoice.jolt.chainr.ChainrBuilder(specs).build());
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy