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

com.jayway.jsonpath.web.bench.Result Maven / Gradle / Ivy

There is a newer version: 2.8.0
Show newest version
package com.jayway.jsonpath.web.bench;

import com.jayway.jsonpath.internal.JsonFormatter;

public class Result {

    public final String provider;
    public final long time;
    public final String result;
    public final String error;

    public Result(String provider, long time, String result, String error) {
        this.provider = provider;
        this.time = time;
        this.result = result != null ? JsonFormatter.prettyPrint(result) : result;
        this.error = error;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy