Examples of AfterLinkDeleteEvent


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

    appCtx.publishEvent(new BeforeLinkDeleteEvent(person, new Object()));
  }

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

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

          prop.wrapper.setProperty(prop.property, null);
        }

        publisher.publishEvent(new BeforeLinkDeleteEvent(prop.wrapper.getBean(), prop.propertyValue));
        Object result = repoMethodInvoker.invokeSave(prop.wrapper.getBean());
        publisher.publishEvent(new AfterLinkDeleteEvent(result, prop.propertyValue));

        return null;
      }
    };
View Full Code Here

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

          prop.wrapper.setProperty(prop.property, null);
        }

        publisher.publishEvent(new BeforeLinkDeleteEvent(prop.wrapper.getBean(), prop.propertyValue));
        Object result = invoker.invokeSave(prop.wrapper.getBean());
        publisher.publishEvent(new AfterLinkDeleteEvent(result, prop.propertyValue));

        return null;
      }
    };
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.