Package pl.com.bottega.ecommerce.canonicalmodel.events

Examples of pl.com.bottega.ecommerce.canonicalmodel.events.CustomerStatusChangedEvent


      return;
   
    this.status = status;
   
    //Sample Case: give 10% rebate for all draft orders - communication via events with different Bounded Context to achieve decoupling
    eventPublisher.publish(new CustomerStatusChangedEvent(getAggregateId(), status));
  }
View Full Code Here

TOP

Related Classes of pl.com.bottega.ecommerce.canonicalmodel.events.CustomerStatusChangedEvent

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.