KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > efs > openreports > providers > impl > ChartProviderImpl


1 /*
2  * Copyright (C) 2003 Erik Swenson - erik@oreports.com
3  *
4  * This program is free software; you can redistribute it and/or modify it
5  * under the terms of the GNU General Public License as published by the Free
6  * Software Foundation; either version 2 of the License, or (at your option)
7  * any later version.
8  *
9  * This program is distributed in the hope that it will be useful, but WITHOUT
10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11  * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12  * more details.
13  *
14  * You should have received a copy of the GNU General Public License along with
15  * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
16  * Place - Suite 330, Boston, MA 02111-1307, USA.
17  *
18  */

19
20 package org.efs.openreports.providers.impl;
21
22 import java.util.List JavaDoc;
23
24 import org.apache.log4j.Logger;
25 import org.efs.openreports.objects.ReportChart;
26 import org.efs.openreports.providers.ChartProvider;
27 import org.efs.openreports.providers.ProviderException;
28 import org.efs.openreports.providers.persistence.ChartPersistenceProvider;
29
30 public class ChartProviderImpl
31     implements ChartProvider
32 {
33     protected static Logger log =
34         Logger.getLogger(ChartProviderImpl.class.getName());
35
36     private ChartPersistenceProvider chartPersistenceProvider;
37     
38     public ChartProviderImpl() throws ProviderException
39     {
40         chartPersistenceProvider = new ChartPersistenceProvider();
41         log.info("Created");
42     }
43
44     public ReportChart getReportChart(Integer JavaDoc id) throws ProviderException
45     {
46         return chartPersistenceProvider.getReportChart(id);
47     }
48
49     public List JavaDoc getReportCharts() throws ProviderException
50     {
51         return chartPersistenceProvider.getReportCharts();
52     }
53
54     public ReportChart insertReportChart(ReportChart reportChart)
55         throws ProviderException
56     {
57         return chartPersistenceProvider.insertReportChart(reportChart);
58     }
59
60     public void updateReportChart(ReportChart reportChart)
61         throws ProviderException
62     {
63         chartPersistenceProvider.updateReportChart(reportChart);
64     }
65
66     public void deleteReportChart(ReportChart reportChart)
67         throws ProviderException
68     {
69         chartPersistenceProvider.deleteReportChart(reportChart);
70     }
71
72 }
Popular Tags