Package org.jsf2jpa.entities

Examples of org.jsf2jpa.entities.Audit


    @PreRemove
    @PreUpdate
    private void onEvent (BaseEntity o)
    {
        if (o.getAudit() == null)
            o.setAudit(new Audit());

        if (o.getAudit().getCreateDate() != null) {
            o.getAudit().setModifyDate(new Date());
        }
        else {
View Full Code Here

TOP

Related Classes of org.jsf2jpa.entities.Audit

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.