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: }
|