Source Code Cross Referenced for IssueResourceBean.java in  » Groupware » LibreSource » org » libresource » bugtracker » ejb » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Groupware » LibreSource » org.libresource.bugtracker.ejb 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /**
002:         * LibreSource
003:         * Copyright (C) 2004-2008 Artenum SARL / INRIA
004:         * http://www.libresource.org - contact@artenum.com
005:         *
006:         * This file is part of the LibreSource software, 
007:         * which can be used and distributed under license conditions.
008:         * The license conditions are provided in the LICENSE.TXT file 
009:         * at the root path of the packaging that enclose this file. 
010:         * More information can be found at 
011:         * - http://dev.libresource.org/home/license
012:         *
013:         * Initial authors :
014:         *
015:         * Guillaume Bort / INRIA
016:         * Francois Charoy / Universite Nancy 2
017:         * Julien Forest / Artenum
018:         * Claude Godart / Universite Henry Poincare
019:         * Florent Jouille / INRIA
020:         * Sebastien Jourdain / INRIA / Artenum
021:         * Yves Lerumeur / Artenum
022:         * Pascal Molli / Universite Henry Poincare
023:         * Gerald Oster / INRIA
024:         * Mariarosa Penzi / Artenum
025:         * Gerard Sookahet / Artenum
026:         * Raphael Tani / INRIA
027:         *
028:         * Contributors :
029:         *
030:         * Stephane Bagnier / Artenum
031:         * Amadou Dia / Artenum-IUP Blois
032:         * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
033:         */package org.libresource.bugtracker.ejb;
034:
035:        import org.libresource.LibresourceResourceBase;
036:
037:        import org.libresource.bugtracker.util.IssueResourceUtil;
038:
039:        import java.util.Date;
040:
041:        import javax.ejb.CreateException;
042:        import javax.ejb.FinderException;
043:
044:        /**
045:         * A libresource Bug
046:         *
047:         * @libresource.resource name="Issue" service="LibresourceBugTracker"
048:         *
049:         * @ejb.finder
050:         *     signature= "java.util.Collection findByAssignee(java.lang.String login)"
051:         *     query ="SELECT OBJECT(i) FROM IssueResource i WHERE i.resolution = 'UNRESOLVED' AND i.assignee = ?1"
052:         *     transaction-type="Supports"
053:         */
054:        public abstract class IssueResourceBean extends LibresourceResourceBase {
055:            /**
056:             * @ejb.create-method
057:             */
058:            public String ejbCreate(int issueId, String summary, String body,
059:                    String type, String priority, String resolution,
060:                    String author, String assignee, Date creationDate)
061:                    throws CreateException {
062:                setId(IssueResourceUtil.generateGUID(this ));
063:                setIssueId(issueId);
064:                setSummary(summary);
065:                setBody(body);
066:                setType(type);
067:                setPriority(priority);
068:                setResolution(resolution);
069:                setAuthorName(author);
070:                setAssignee(assignee);
071:                setCreationDate(creationDate);
072:                setUpdateDate(new Date());
073:
074:                return null;
075:            }
076:
077:            // ejbselect methods
078:
079:            /**
080:             * @ejb.select
081:             *     query ="SELECT COUNT(i) FROM IssueResource AS i"
082:             *     result-type-mapping="Local"
083:             */
084:            public abstract int ejbSelectCountIssues() throws FinderException;
085:
086:            /**
087:             * @ejb.home-method
088:             */
089:            public int ejbHomeCountIssues() throws javax.ejb.FinderException {
090:                return ejbSelectCountIssues();
091:            }
092:
093:            // persistents fields
094:
095:            /**
096:             * @ejb.persistent-field
097:             * @ejb.interface-method
098:             * @ejb.value-object match="libresource"
099:             * @ejb.transaction type="Supports"
100:             */
101:            public abstract String getId();
102:
103:            /**
104:             * @ejb.persistent-field
105:             * @ejb.interface-method
106:             * @ejb.transaction type="Mandatory"
107:             */
108:            public abstract void setId(String id);
109:
110:            /**
111:             * @ejb.interface-method
112:             * @ejb.value-object match="libresource"
113:             * @ejb.transaction type="Supports"
114:             */
115:            public String getShortResourceName() {
116:                return getSummary();
117:            }
118:
119:            /**
120:             * @ejb.persistent-field
121:             * @ejb.interface-method
122:             * @ejb.value-object match="libresource"
123:             * @ejb.transaction type="Supports"
124:             */
125:            public abstract int getIssueId();
126:
127:            /**
128:             * @ejb.persistent-field
129:             * @ejb.interface-method
130:             * @ejb.transaction type="Mandatory"
131:             */
132:            public abstract void setIssueId(int issueId);
133:
134:            /**
135:             * @ejb.persistent-field
136:             * @ejb.interface-method
137:             * @ejb.value-object match="libresource"
138:             * @ejb.transaction type="Supports"
139:             */
140:            public abstract String getSummary();
141:
142:            /**
143:             * @ejb.persistent-field
144:             * @ejb.interface-method
145:             * @ejb.transaction type="Mandatory"
146:             */
147:            public abstract void setSummary(String summary);
148:
149:            /**
150:             * @ejb.persistent-field
151:             * @ejb.interface-method
152:             * @ejb.value-object match="libresource"
153:             * @ejb.transaction type="Supports"
154:             */
155:            public abstract String getBody();
156:
157:            /**
158:             * @ejb.persistent-field
159:             * @ejb.interface-method
160:             * @ejb.transaction type="Mandatory"
161:             */
162:            public abstract void setBody(String body);
163:
164:            /**
165:             * @ejb.persistent-field
166:             * @ejb.interface-method
167:             * @ejb.value-object match="libresource"
168:             * @ejb.transaction type="Supports"
169:             */
170:            public abstract String getAuthorName();
171:
172:            /**
173:             * @ejb.persistent-field
174:             * @ejb.interface-method
175:             * @ejb.transaction type="Mandatory"
176:             */
177:            public abstract void setAuthorName(String authorName);
178:
179:            /**
180:             * @ejb.persistent-field
181:             * @ejb.interface-method
182:             * @ejb.value-object match="libresource"
183:             * @ejb.transaction type="Supports"
184:             */
185:            public abstract Date getCreationDate();
186:
187:            /**
188:             * @ejb.persistent-field
189:             * @ejb.interface-method
190:             * @ejb.transaction type="Mandatory"
191:             */
192:            public abstract void setCreationDate(Date date);
193:
194:            /**
195:             * @ejb.persistent-field
196:             * @ejb.interface-method
197:             * @ejb.value-object match="libresource"
198:             * @ejb.transaction type="Supports"
199:             */
200:            public abstract Date getUpdateDate();
201:
202:            /**
203:             * @ejb.persistent-field
204:             * @ejb.interface-method
205:             * @ejb.transaction type="Mandatory"
206:             */
207:            public abstract void setUpdateDate(Date date);
208:
209:            /**
210:             * @ejb.persistent-field
211:             * @ejb.interface-method
212:             * @ejb.value-object match="libresource"
213:             * @ejb.transaction type="Supports"
214:             */
215:            public abstract String getType();
216:
217:            /**
218:             * @ejb.persistent-field
219:             * @ejb.interface-method
220:             * @ejb.transaction type="Mandatory"
221:             */
222:            public abstract void setType(String type);
223:
224:            /**
225:             * @ejb.persistent-field
226:             * @ejb.interface-method
227:             * @ejb.value-object match="libresource"
228:             * @ejb.transaction type="Supports"
229:             */
230:            public abstract String getPriority();
231:
232:            /**
233:             * @ejb.persistent-field
234:             * @ejb.interface-method
235:             * @ejb.transaction type="Mandatory"
236:             */
237:            public abstract void setPriority(String priority);
238:
239:            /**
240:             * @ejb.persistent-field
241:             * @ejb.interface-method
242:             * @ejb.value-object match="libresource"
243:             * @ejb.transaction type="Supports"
244:             */
245:            public abstract String getResolution();
246:
247:            /**
248:             * @ejb.persistent-field
249:             * @ejb.interface-method
250:             * @ejb.transaction type="Mandatory"
251:             */
252:            public abstract void setResolution(String resolution);
253:
254:            /**
255:             * @ejb.persistent-field
256:             * @ejb.interface-method
257:             * @ejb.value-object match="libresource"
258:             * @ejb.transaction type="Supports"
259:             */
260:            public abstract String getAssignee();
261:
262:            /**
263:             * @ejb.persistent-field
264:             * @ejb.interface-method
265:             * @ejb.transaction type="Mandatory"
266:             */
267:            public abstract void setAssignee(String assignee);
268:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.