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

com.xlrit.gears.plugin.jasper.CustomJsonQLDataSource Maven / Gradle / Ivy

There is a newer version: 1.17.4
Show newest version
package com.xlrit.gears.plugin.jasper;

import com.fasterxml.jackson.databind.JsonNode;

import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.data.JsonQLDataSource;

class CustomJsonQLDataSource extends JsonQLDataSource {

	public CustomJsonQLDataSource(JsonNode jacksonJsonTree, String selectExpression) throws JRException {
		super(jacksonJsonTree, selectExpression);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy