Package com.spaceprogram.simplejpa.model

Examples of com.spaceprogram.simplejpa.model.Timestamped


    @PrePersist
    public void prePersist(Object object) {
        System.out.println("prePersist");
        if(object instanceof Timestamped){
            System.out.println("Setting timestamps.");
            Timestamped timestamped = (Timestamped) object;
            Date now = new Date();
            timestamped.setCreated(now);
            timestamped.setUpdated(now);
        }
    }
View Full Code Here


    @PreUpdate
    public void preUpdate(Object object) {
        System.out.println("preUpdate.");
        if(object instanceof Timestamped){
            System.out.println("Setting timestamps.");
            Timestamped timestamped = (Timestamped) object;
            timestamped.setUpdated(new Date());
        }
    }
View Full Code Here

TOP

Related Classes of com.spaceprogram.simplejpa.model.Timestamped

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.