Package org.springframework.data.rest.core.event

Examples of org.springframework.data.rest.core.event.BeforeCreateEvent


    person = people.save(new Person("Jane", "Doe"));
  }

  @Test(expected = RuntimeException.class)
  public void shouldDispatchBeforeCreate() throws Exception {
    appCtx.publishEvent(new BeforeCreateEvent(person));
  }
View Full Code Here


   * @return
   */
  private ResponseEntity<ResourceSupport> createAndReturn(Object domainObject, RepositoryInvoker invoker,
      PersistentEntityResourceAssembler assembler) {

    publisher.publishEvent(new BeforeCreateEvent(domainObject));
    Object savedObject = invoker.invokeSave(domainObject);
    publisher.publishEvent(new AfterCreateEvent(savedObject));

    HttpHeaders headers = new HttpHeaders();
    addLocationHeader(headers, assembler, savedObject);
View Full Code Here

TOP

Related Classes of org.springframework.data.rest.core.event.BeforeCreateEvent

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.