Package org.jresponder.domain

Examples of org.jresponder.domain.LogEntry


                  Subscriber aSubscriber,
                  String aMessageGroupName,
                  Map<String,Object> aPropsMap
              ) {
         
    LogEntry myLogEntry = new LogEntry();
      myLogEntry.setLogEntryType(aLogEntryType);
      myLogEntry.setMessageGroupName(aMessageGroupName);
      myLogEntry.setPropsMap(aPropsMap);
      myLogEntry.setSubscriber(aSubscriber);
     
    em.persist(myLogEntry);
   
    return myLogEntry;
   
View Full Code Here

TOP

Related Classes of org.jresponder.domain.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.