|
From: <tr...@us...> - 2003-08-27 03:32:39
|
Update of /cvsroot/babeldoc/babeldoc/modules/j2ee/src/com/babeldoc/j2ee/journal
In directory sc8-pr-cvs1:/tmp/cvs-serv30628/com/babeldoc/j2ee/journal
Modified Files:
EjbClientJournal.java EjbJournalBean.java EjbJournalTest.java
Log Message:
Uh, why didnt I fix the comments, licenses, etc before submitting...??
Index: EjbClientJournal.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/j2ee/src/com/babeldoc/j2ee/journal/EjbClientJournal.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** EjbClientJournal.java 27 Aug 2003 03:15:30 -0000 1.1
--- EjbClientJournal.java 27 Aug 2003 03:32:32 -0000 1.2
***************
*** 80,94 ****
* TODO: making this work
*
- * <p>Title: babel</p>
- * <p>Description: universal document processor</p>
- * <p>Copyright: Copyright (c) 2002</p>
* @author bmcdonald
! * @version 1.0
*/
public class EjbClientJournal
implements IJournal {
! /**
! * Bridged object
! */
private EjbJournalRemote journal;
--- 80,90 ----
* TODO: making this work
*
* @author bmcdonald
! * @version 1.1
*/
public class EjbClientJournal
implements IJournal {
!
! /** Bridged object */
private EjbJournalRemote journal;
***************
*** 108,111 ****
--- 104,108 ----
/**
* Get an existing ticket from the string identifier.
+ *
* @param identifier;
* @return the created tracker ticket
***************
*** 122,125 ****
--- 119,123 ----
/**
* Get a ticket for tracking a document.
+ *
* @return the created tracker ticket
*/
***************
*** 152,155 ****
--- 150,154 ----
/**
* Get a ticket for tracking a document from a parent ticket.
+ *
* @param parentTicket the creating ticket
* @return the created tracker ticket
***************
*** 166,169 ****
--- 165,169 ----
/**
* Update a document associated with this ticket
+ *
* @param ticket - the ticket to replay
* @param document the document to update
***************
*** 182,185 ****
--- 182,186 ----
/**
* Update the status of this ticket
+ *
* @param ticket - the ticket for this status
* @param status - the status of the ticket
***************
*** 197,200 ****
--- 198,202 ----
/**
* Replay this ticket from the step
+ *
* @param ticket - the ticket to replay
* @param step - the step to replay from
***************
*** 257,260 ****
--- 259,263 ----
/**
* retrieve the document from the journal for this ticket, step.
+ *
* @param ticket - the ticket to replay
* @param step - the step to replay from
***************
*** 276,281 ****
* @param parent
* @return array of child tickets.
- *
- * @ejb:interface-method view="remote"
*/
public IJournalTicket[] getAllChildTickets(IJournalTicket parent)
--- 279,282 ----
Index: EjbJournalBean.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/j2ee/src/com/babeldoc/j2ee/journal/EjbJournalBean.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** EjbJournalBean.java 27 Aug 2003 03:15:30 -0000 1.1
--- EjbJournalBean.java 27 Aug 2003 03:32:32 -0000 1.2
***************
*** 78,82 ****
* EJB Interface for the tracking subsystem. This is meant to provide
* a means to track a document through the system as well as reprocessing
! * opportunities later on
*
* @ejb:bean name="EjbJournal" jndi-name="EjbJournal" type="Stateless"
--- 78,85 ----
* EJB Interface for the tracking subsystem. This is meant to provide
* a means to track a document through the system as well as reprocessing
! * opportunities later on.
! *
! * @author bmcdonald
! * @version 1.1
*
* @ejb:bean name="EjbJournal" jndi-name="EjbJournal" type="Stateless"
***************
*** 88,92 ****
*
* @jboss:resource-ref res-ref-name="jdbc/babelPool" resource-name="jdbc/babelPool"
- *
*/
public class EjbJournalBean
--- 91,94 ----
Index: EjbJournalTest.java
===================================================================
RCS file: /cvsroot/babeldoc/babeldoc/modules/j2ee/src/com/babeldoc/j2ee/journal/EjbJournalTest.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** EjbJournalTest.java 27 Aug 2003 03:15:30 -0000 1.1
--- EjbJournalTest.java 27 Aug 2003 03:32:32 -0000 1.2
***************
*** 75,79 ****
* Test the journal functionality.
*/
! public class EjbJournalTest extends TestCase {
IJournal journal;
--- 75,82 ----
* Test the journal functionality.
*/
! public class EjbJournalTest
! extends TestCase {
!
! /** reference to the journal */
IJournal journal;
|