Package org.springframework.data.domain

Examples of org.springframework.data.domain.Auditable


        if (obj instanceof Auditable) {
         
          DateTime currentTimeStamp = new DateTime();
          String currentUser = auditorAwareBean.getCurrentAuditor();
         
          Auditable auditable = (Auditable) obj;
          if (auditable.getCreatedDate() == null) {
            auditable.setCreatedDate(currentTimeStamp);
            auditable.setCreatedBy(currentUser);
          }
          auditable.setLastModifiedBy(currentUser);
          auditable.setLastModifiedDate(currentTimeStamp);
         
        }
       
      }
    }
View Full Code Here

TOP

Related Classes of org.springframework.data.domain.Auditable

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.