KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > campware > cream > modules > actions > NotificationSQL


1 package org.campware.cream.modules.actions;
2
3 /* ====================================================================
4  * Copyright (C) 2003-2005 Media Development Loan Fund
5  *
6  * * contact: contact@campware.org - http://www.campware.org
7  * Campware encourages further development. Please let us know.
8  *
9  * This program is free software; you can redistribute it and/or
10  * modify it under the terms of the GNU General Public License
11  * as published by the Free Software Foundation; either version 2
12  * of the License, or (at your option) any later version.
13  *
14  * This program is distributed in the hope that it will be useful,
15  * but WITHOUT ANY WARRANTY; without even the implied warranty of
16  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17  * GNU General Public License for more details.
18  *
19  * You should have received a copy of the GNU General Public License
20  * along with this program; if not, write to the Free Software
21  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
22  *
23  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
24  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
25  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
26  * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
27  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
30  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
31  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
32  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
33  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  * ====================================================================
36  *
37  * This software consists of voluntary contributions made by many
38  * individuals on behalf of the Apache Software Foundation. For more
39  * information on the Apache Software Foundation, please see
40  * <http://www.apache.org/>.
41  */

42
43 import org.apache.velocity.context.Context;
44
45 import org.apache.turbine.util.RunData;
46 import org.campware.cream.om.Notification;
47
48 /**
49  * This class provides a simple set of methods to
50  * insert/update/delete records in a database.
51  */

52 public class NotificationSQL extends CreamAction
53 {
54     protected void initScreen()
55     {
56         setModuleType(SYSTEM);
57         setModuleName("NOTIFICATION");
58     }
59
60     /**
61      * Update a record in the database with the
62      * information present in the web form.
63      *
64      * Again, this is merely an example. The data
65      * should be checked before being allowed
66      * into the database.
67      */

68     public void doUpdate(RunData data, Context context)
69         throws Exception JavaDoc
70     {
71         Notification entry = new Notification();
72         
73         String JavaDoc not1= data.getParameters().getString("notification1");
74         String JavaDoc not2= data.getParameters().getString("notification2");
75         String JavaDoc not3= data.getParameters().getString("notification3");
76         
77         String JavaDoc subj1= data.getParameters().getString("subject1");
78         String JavaDoc subj2= data.getParameters().getString("subject2");
79         String JavaDoc subj3= data.getParameters().getString("subject3");
80         
81         Notification entry1 = new Notification();
82         
83         entry1.setNotificationId(1001);
84         entry1.setNotificationType(10);
85         entry1.setSubject(subj1);
86         entry1.setBody(not1);
87         
88         entry1.setModified(true);
89         entry1.setNew(false);
90         entry1.save();
91
92         Notification entry2 = new Notification();
93         
94         entry2.setNotificationId(1002);
95         entry2.setNotificationType(20);
96         entry2.setSubject(subj2);
97         entry2.setBody(not2);
98         
99         entry2.setModified(true);
100         entry2.setNew(false);
101         entry2.save();
102
103         Notification entry3 = new Notification();
104         
105         entry3.setNotificationId(1003);
106         entry3.setNotificationType(30);
107         entry3.setSubject(subj3);
108         entry3.setBody(not3);
109         
110         entry3.setModified(true);
111         entry3.setNew(false);
112         entry3.save();
113
114     }
115
116
117 }
118
Popular Tags