Examples of BeforeLinkDeleteEvent


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

          throw new HttpRequestMethodNotSupportedException("DELETE");
        } else {
          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.BeforeLinkDeleteEvent

          }
        } else {
          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

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

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

  @Test(expected = RuntimeException.class)
  public void shouldDispatchBeforeLinkDelete() throws Exception {
    appCtx.publishEvent(new BeforeLinkDeleteEvent(person, new Object()));
  }
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.