Package org.jresearch.gossip.beans

Examples of org.jresearch.gossip.beans.LogEntry


    dao.fillLogEntryList(criteria, records, block);
    Iterator it = records.getRecords().iterator();
    assertTrue(it.hasNext());
    assertTrue(records.getRecordsCount() > 0);
    while(it.hasNext()) {
      LogEntry obj = (LogEntry)it.next();
      System.out.print(String.valueOf(obj.getLog_date()));
      System.out.print(", "+ String.valueOf(obj.getLog_level()));
      System.out.print(", "+String.valueOf(obj.getLogger()));
      System.out.print(", "+String.valueOf(obj.getMessage()));
      System.out.print(", "+String.valueOf(obj.getRemote_ip()));
      System.out.print(", "+String.valueOf(obj.getSession_id()));
      System.out.println(", "+String.valueOf(obj.getUser_name()));
    }
  }
View Full Code Here

TOP

Related Classes of org.jresearch.gossip.beans.LogEntry

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.