From: Santi B. <san...@us...> - 2007-12-10 23:09:08
|
Update of /cvsroot/babeldoc/babeldoc/modules/j2ee/gensrc/com/babeldoc/j2ee/journal In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv16473/modules/j2ee/gensrc/com/babeldoc/j2ee/journal Added Files: EjbJournalLocalHome.java EjbJournalHome.java EjbJournal.java EjbJournalRemote.java Log Message: Minor update --- NEW FILE: EjbJournalLocalHome.java --- /* * Generated by XDoclet - Do not edit! */ package com.babeldoc.j2ee.journal; /** * Local home interface for EjbJournal. * @xdoclet-generated at December 10 2007 */ public interface EjbJournalLocalHome extends javax.ejb.EJBLocalHome { public static final String COMP_NAME="java:comp/env/ejb/EjbJournalLocal"; public static final String JNDI_NAME="EjbJournalLocal"; public com.babeldoc.j2ee.journal.EjbJournal create() throws javax.ejb.CreateException; } --- NEW FILE: EjbJournal.java --- /* * Generated by XDoclet - Do not edit! */ package com.babeldoc.j2ee.journal; /** * Local interface for EjbJournal. * @xdoclet-generated at December 10 2007 */ public interface EjbJournal extends javax.ejb.EJBLocalObject { /** * Get an existing ticket from the string identifier. * @param identifier; * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket getTicket( java.lang.String identifier ) throws com.babeldoc.core.journal.JournalException; /** * Get a ticket for tracking a document. * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket dummyTicket( ) throws com.babeldoc.core.journal.JournalException; /** * Get a ticket for tracking a document. * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket newTicket( ) throws com.babeldoc.core.journal.JournalException; /** * Log a message into the log file * @param stage the stage to log * @param message The message to log */ public void logMessage( com.babeldoc.core.journal.IJournalTicket ticket,java.lang.String stage,java.lang.String message ) throws com.babeldoc.core.journal.JournalException; /** * Get a ticket for tracking a document from a parent ticket. * @param parentTicket the creating ticket * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket forkTicket( com.babeldoc.core.journal.IJournalTicket parentTicket ) throws com.babeldoc.core.journal.JournalException; /** * Update a document associated with this ticket * @param ticket - the ticket to replay * @param document the document to update * @param stage the pipeline stage resulting in this status change */ public void updateDocument( com.babeldoc.core.journal.IJournalTicket ticket,com.babeldoc.core.pipeline.PipelineDocument document,java.lang.String stage ) throws com.babeldoc.core.journal.JournalException; /** * Update the status of this ticket * @param ticket - the ticket for this status * @param status - the status of the ticket * @param stage the pipeline stage resulting in this status change */ public void updateStatus( com.babeldoc.core.journal.IJournalTicket ticket,com.babeldoc.core.journal.IJournalStatus status,java.lang.String stage ) throws com.babeldoc.core.journal.JournalException; /** * Replay this ticket from the step * @param ticket - the ticket to replay * @param step - the step to replay from */ public void replayTicket( com.babeldoc.core.journal.IJournalTicket ticket,int step ) throws com.babeldoc.core.journal.JournalException; /** * get tickets between the specified dates. Return up to the maxreturned number of results. * @param jQuery the number of tickets to query */ public com.babeldoc.core.journal.query.QueryTicket[] getTickets( com.babeldoc.core.journal.query.JournalQuery jQuery ) throws com.babeldoc.core.journal.JournalException; /** * getJournalForTicket. Get all the ticketsteps for the ticket. * @param ticket number * @return array of querytickets */ public com.babeldoc.core.journal.query.QueryTicket[] getAllTicketSteps( com.babeldoc.core.journal.IJournalTicket ticket ) throws com.babeldoc.core.journal.JournalException; /** * retrieve the document from the journal for this ticket, step. * @param ticket - the ticket to replay * @param step - the step to replay from * @return * @throws JournalException */ public com.babeldoc.core.pipeline.PipelineDocument getDocumentAtTicketStep( com.babeldoc.core.journal.IJournalTicket ticket,int step ) throws com.babeldoc.core.journal.JournalException; /** * getChildrenTickets. Get all the tickets which are children of this ticket * @param parent * @return array of child tickets. */ public com.babeldoc.core.journal.IJournalTicket[] getAllChildTickets( com.babeldoc.core.journal.IJournalTicket parent ) throws com.babeldoc.core.journal.JournalException; /** * Get the configuration information from the delegated object not from this object. */ public com.babeldoc.core.option.IConfigInfo getDelegatedInfo( ) ; /** * Get the configuration iformation for this class * @return IConfigInfo object */ public com.babeldoc.core.option.IConfigInfo getInfo( ) ; } --- NEW FILE: EjbJournalHome.java --- /* * Generated by XDoclet - Do not edit! */ package com.babeldoc.j2ee.journal; /** * Home interface for EjbJournal. * @xdoclet-generated at December 10 2007 */ public interface EjbJournalHome extends javax.ejb.EJBHome { public static final String COMP_NAME="java:comp/env/ejb/EjbJournal"; public static final String JNDI_NAME="EjbJournal"; public com.babeldoc.j2ee.journal.EjbJournalRemote create() throws javax.ejb.CreateException,java.rmi.RemoteException; } --- NEW FILE: EjbJournalRemote.java --- /* * Generated by XDoclet - Do not edit! */ package com.babeldoc.j2ee.journal; /** * Remote interface for EjbJournal. * @xdoclet-generated at December 10 2007 */ public interface EjbJournalRemote extends javax.ejb.EJBObject { /** * Get an existing ticket from the string identifier. * @param identifier; * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket getTicket( java.lang.String identifier ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Get a ticket for tracking a document. * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket dummyTicket( ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Get a ticket for tracking a document. * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket newTicket( ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Log a message into the log file * @param stage the stage to log * @param message The message to log */ public void logMessage( com.babeldoc.core.journal.IJournalTicket ticket,java.lang.String stage,java.lang.String message ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Get a ticket for tracking a document from a parent ticket. * @param parentTicket the creating ticket * @return the created tracker ticket */ public com.babeldoc.core.journal.IJournalTicket forkTicket( com.babeldoc.core.journal.IJournalTicket parentTicket ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Update a document associated with this ticket * @param ticket - the ticket to replay * @param document the document to update * @param stage the pipeline stage resulting in this status change */ public void updateDocument( com.babeldoc.core.journal.IJournalTicket ticket,com.babeldoc.core.pipeline.PipelineDocument document,java.lang.String stage ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Update the status of this ticket * @param ticket - the ticket for this status * @param status - the status of the ticket * @param stage the pipeline stage resulting in this status change */ public void updateStatus( com.babeldoc.core.journal.IJournalTicket ticket,com.babeldoc.core.journal.IJournalStatus status,java.lang.String stage ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Replay this ticket from the step * @param ticket - the ticket to replay * @param step - the step to replay from */ public void replayTicket( com.babeldoc.core.journal.IJournalTicket ticket,int step ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * get tickets between the specified dates. Return up to the maxreturned number of results. * @param jQuery the number of tickets to query */ public com.babeldoc.core.journal.query.QueryTicket[] getTickets( com.babeldoc.core.journal.query.JournalQuery jQuery ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * getJournalForTicket. Get all the ticketsteps for the ticket. * @param ticket number * @return array of querytickets */ public com.babeldoc.core.journal.query.QueryTicket[] getAllTicketSteps( com.babeldoc.core.journal.IJournalTicket ticket ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * retrieve the document from the journal for this ticket, step. * @param ticket - the ticket to replay * @param step - the step to replay from * @return * @throws JournalException */ public com.babeldoc.core.pipeline.PipelineDocument getDocumentAtTicketStep( com.babeldoc.core.journal.IJournalTicket ticket,int step ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * getChildrenTickets. Get all the tickets which are children of this ticket * @param parent * @return array of child tickets. */ public com.babeldoc.core.journal.IJournalTicket[] getAllChildTickets( com.babeldoc.core.journal.IJournalTicket parent ) throws com.babeldoc.core.journal.JournalException, java.rmi.RemoteException; /** * Get the configuration information from the delegated object not from this object. */ public com.babeldoc.core.option.IConfigInfo getDelegatedInfo( ) throws java.rmi.RemoteException; /** * Get the configuration iformation for this class * @return IConfigInfo object */ public com.babeldoc.core.option.IConfigInfo getInfo( ) throws java.rmi.RemoteException; } |