Package net.sf.xbus.base.journal

Examples of net.sf.xbus.base.journal.Journal


    }

    /* Logging of the sending-activity into the journal. */
    try
    {
      new Journal().log('S', destination, message);
    }
    catch (Exception t)
    {
      throw new XException(Constants.LOCATION_INTERN,
          Constants.LAYER_APPLICATION,
View Full Code Here


      {
        // Logging of the receiving-activity into the journal and
        // closing the
        // connection to the database.
        call.setResponseTimestamp(new Date());
        Journal journal = new Journal();
        journal.log('R', source, call);
        journal.commit();
      } // try
      catch (Exception t)
      {
        Trace.error(t);
      } // catch (Throwable t)
View Full Code Here

TOP

Related Classes of net.sf.xbus.base.journal.Journal

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.