Examples of ReflectionAuditingBeanWrapper


Examples of org.springframework.data.auditing.AuditableBeanWrapperFactory.ReflectionAuditingBeanWrapper

  public void setUp() {

    assertThat(time, is(new DateTime(calendar)));

    this.user = new AnnotatedUser();
    this.wrapper = new ReflectionAuditingBeanWrapper(user);
  }
View Full Code Here

Examples of org.springframework.data.auditing.AuditableBeanWrapperFactory.ReflectionAuditingBeanWrapper

      @LastModifiedDate long modifiedDate;
    }

    Sample sample = new Sample();
    AuditableBeanWrapper wrapper = new ReflectionAuditingBeanWrapper(sample);

    wrapper.setCreatedDate(calendar);
    assertThat(sample.createdDate, is(time.getMillis()));

    wrapper.setLastModifiedDate(calendar);
    assertThat(sample.modifiedDate, is(time.getMillis()));
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.