KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > cowsultants > itracker > ejb > beans > entity > NotificationBean


1 /*
2  * This software was designed and created by Jason Carroll.
3  * Copyright (c) 2002, 2003, 2004 Jason Carroll.
4  * The author can be reached at jcarroll@cowsultants.com
5  * ITracker website: http://www.cowsultants.com
6  * ITracker forums: http://www.cowsultants.com/phpBB/index.php
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it only under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16  * GNU General Public License for more details.
17  */

18
19 package cowsultants.itracker.ejb.beans.entity;
20
21 import java.util.*;
22 import java.sql.Timestamp JavaDoc;
23
24 import cowsultants.itracker.ejb.client.models.NotificationModel;
25
26 public abstract class NotificationBean extends GenericBean {
27
28     public abstract int getNotificationRole();
29     public abstract void setNotificationRole(int value);
30
31     public abstract UserLocal getUser();
32     public abstract void setUser(UserLocal value);
33
34     public abstract IssueLocal getIssue();
35     public abstract void setIssue(IssueLocal value);
36
37     public NotificationModel getModel() {
38         NotificationModel model = new NotificationModel();
39         model.setId(this.getId());
40         model.setNotificationRole(this.getNotificationRole());
41         model.setLastModifiedDate(this.getLastModifiedDate());
42         model.setCreateDate(this.getCreateDate());
43
44         if(this.getIssue() != null) {
45             model.setIssueId(this.getIssue().getId());
46         }
47
48         if(this.getUser() != null) {
49             model.setUserId(this.getUser().getId());
50             model.setUserLogin(this.getUser().getLogin());
51             model.setUserFirstName(this.getUser().getFirstName());
52             model.setUserLastName(this.getUser().getLastName());
53             model.setUserEmail(this.getUser().getEmail());
54         }
55
56         return model;
57     }
58
59     public void setModel(NotificationModel model) {
60         this.setNotificationRole(model.getNotificationRole());
61         this.setLastModifiedDate(new Timestamp JavaDoc(new Date().getTime()));
62     }
63
64 }
65
Popular Tags