net.sf.jasperreports.data.AbstractDataAdapterService Maven / Gradle / Ivy
/*
* JasperReports - Free Java Reporting Library.
* Copyright (C) 2001 - 2018 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.data;
import java.util.HashMap;
import java.util.Map;
import net.sf.jasperreports.engine.JRException;
import net.sf.jasperreports.engine.JasperReportsContext;
import net.sf.jasperreports.engine.ParameterContributorContext;
/**
* @author Teodor Danciu ([email protected])
*/
public abstract class AbstractDataAdapterService implements DataAdapterService
{
public static final String SECRETS_CATEGORY = "net.sf.jasperreports.data.adapter";
/**
*
*/
private final ParameterContributorContext paramContribContext;
private String name;
private DataAdapter dataAdapter;
/**
*
*/
public AbstractDataAdapterService(ParameterContributorContext paramContribContext, DataAdapter dataAdapter)
{
this.dataAdapter = dataAdapter;
this.paramContribContext = paramContribContext;
}
/**
* @deprecated Replaced by {@link #AbstractDataAdapterService(ParameterContributorContext, DataAdapter)}.
*/
public AbstractDataAdapterService(JasperReportsContext jasperReportsContext, DataAdapter dataAdapter)
{
this(new ParameterContributorContext(jasperReportsContext, null, null), dataAdapter);
}
/**
*
*/
public ParameterContributorContext getParameterContributorContext()
{
return paramContribContext;
}
/**
*
*/
public JasperReportsContext getJasperReportsContext()
{
return paramContribContext == null ? null : paramContribContext.getJasperReportsContext();
}
/**
*
*/
public String getName()
{
return name;
}
/**
*
*/
public void setName(String name)
{
this.name = name;
}
/**
*
*/
public DataAdapter getDataAdapter()
{
return dataAdapter;
}
/**
* FIXME consider removing
*/
public void setDataAdapter(DataAdapter dataAdapter)
{
this.dataAdapter = dataAdapter;
}
@Override
public abstract void contributeParameters(Map parameters) throws JRException;
@Override
public void dispose()
{
}
@Override
public void test() throws JRException
{
contributeParameters(new HashMap());
dispose();
}
}