Examples of BeforeLinkSaveEvent


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

          Object propVal = loadPropertyValue(prop.propertyType, incoming.getLinks().get(0));
          prop.wrapper.setProperty(prop.property, propVal);
        }

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

        return null;
      }
View Full Code Here

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

    appCtx.publishEvent(new AfterDeleteEvent(person));
  }

  @Test(expected = RuntimeException.class)
  public void shouldDispatchBeforeLinkSave() throws Exception {
    appCtx.publishEvent(new BeforeLinkSaveEvent(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.