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

net.sf.jasperreports.engine.query.JsonQueryExecuterFactory Maven / Gradle / Ivy

There is a newer version: 6.21.3
Show newest version
/*
 * JasperReports - Free Java Reporting Library.
 * Copyright (C) 2001 - 2014 TIBCO Software Inc. All rights reserved.
 * http://www.jaspersoft.com
 *
 * Unless you have purchased a commercial license agreement from Jaspersoft,
 * the following license terms apply:
 *
 * This program is part of JasperReports.
 *
 * JasperReports is free software: you can redistribute it and/or modify
 * it under the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * JasperReports is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with JasperReports. If not, see .
 */
package net.sf.jasperreports.engine.query;

import java.util.Map;

import net.sf.jasperreports.engine.JRDataset;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JRPropertiesUtil;
import net.sf.jasperreports.engine.JRValueParameter;
import net.sf.jasperreports.engine.JasperReportsContext;

/**
 * JSON query executer factory.
 * 

* The factory creates {@link net.sf.jasperreports.engine.query.JsonQueryExecuter JRJsonQueryExecuter} * query executers. * * @author Narcis Marcu ([email protected]) */ public class JsonQueryExecuterFactory extends AbstractQueryExecuterFactory { /** * Built-in parameter holding the value of the java.io.InputStream to be used for obtaining the JSON data. */ public static final String JSON_INPUT_STREAM = "JSON_INPUT_STREAM"; /** * Built-in parameter holding the value of the source for the JSON file. *

* It can be: *

    *
  • a resource on the classpath
  • *
  • a file from the filesystem, with an absolute or relative path
  • *
  • a url
  • *
*/ public static final String JSON_SOURCE = JRPropertiesUtil.PROPERTY_PREFIX + "json.source"; //FIXME javadoc public static final String JSON_SOURCES = JRPropertiesUtil.PROPERTY_PREFIX + "json.sources"; /** * Parameter holding the format pattern used to instantiate java.util.Date instances. */ public final static String JSON_DATE_PATTERN = JRPropertiesUtil.PROPERTY_PREFIX + "json.date.pattern"; /** * Parameter holding the format pattern used to instantiate java.lang.Number instances. */ public final static String JSON_NUMBER_PATTERN = JRPropertiesUtil.PROPERTY_PREFIX + "json.number.pattern"; /** * Parameter holding the value of the datasource Locale */ public final static String JSON_LOCALE = "JSON_LOCALE"; /** * Built-in parameter/property holding the java.lang.String code of the locale to be used when parsing the JSON data. *

* The allowed format is: language[_country[_variant]] */ public static final String JSON_LOCALE_CODE = JRPropertiesUtil.PROPERTY_PREFIX + "json.locale.code"; /** * Parameter holding the value of the datasource Timezone */ public final static String JSON_TIME_ZONE = "JSON_TIME_ZONE"; /** * Built-in parameter/property holding the java.lang.String value of the time zone id to be used when parsing the JSON data. */ public static final String JSON_TIMEZONE_ID = JRPropertiesUtil.PROPERTY_PREFIX + "json.timezone.id"; private final static Object[] JSON_BUILTIN_PARAMETERS = { JSON_INPUT_STREAM, "java.io.InputStream", JSON_SOURCE, "java.lang.String", JSON_SOURCES, "java.util.List", JSON_DATE_PATTERN, "java.lang.String", JSON_NUMBER_PATTERN, "java.lang.String", JSON_LOCALE, "java.util.Locale", JSON_LOCALE_CODE, "java.lang.String", JSON_TIME_ZONE, "java.util.TimeZone", JSON_TIMEZONE_ID, "java.lang.String" }; @Override public Object[] getBuiltinParameters() { return JSON_BUILTIN_PARAMETERS; } @Override public JRQueryExecuter createQueryExecuter( JasperReportsContext jasperReportsContext, JRDataset dataset, Map parameters ) throws JRException { return new JsonQueryExecuter(jasperReportsContext, dataset, parameters); } @Override public boolean supportsQueryParameterType(String className) { return true; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy