Package org.jboss.seam.examples.seamcrm.aaa

Examples of org.jboss.seam.examples.seamcrm.aaa.EventLog


        if (AuditTools.isChanged(orig.getType(), cur.getType())) {
            sb.newLine(AuditTools.changedString("Type", orig.getType(), cur.getType()));
        }     

        if (sb.length() > 0) {
            eventLog.fire(new EventLog(cur, sb.toString()));
        }
    }
View Full Code Here


    }

    public String add() {

        em.persist(contact);
        eventLog.fire(new EventLog(contact, "Contact Created"));
        em.flush();
        conversation.end();
        return NavigationTools.buildRedirectViewId(contact);
    }
View Full Code Here

        if (AuditTools.isChanged(orig.getTimeZone(), cur.getTimeZone())) {
            sb.newLine(AuditTools.changedString("Time Zone", orig.getTimeZone(), cur.getTimeZone()));
        }

        if (sb.length() > 0) {
            eventLog.fire(new EventLog(cur, sb.toString()));
        }
    }
View Full Code Here

TOP

Related Classes of org.jboss.seam.examples.seamcrm.aaa.EventLog

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.