Examples of BeforeCreateEvent


Examples of com.sun.jsftemplating.layout.event.BeforeCreateEvent

     @return  The result of invoking the handlers (null by default)
     */
    public Object beforeCreate(FacesContext context, UIComponent parent) {
  // Invoke "beforeCreate" handlers
  return dispatchHandlers(
    context, BEFORE_CREATE, new BeforeCreateEvent(parent));
    }
View Full Code Here

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

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

   * @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
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.