Interface ShoppingListMessage

All Superinterfaces:
BaseResource, DomainResource<Message>, Identifiable<Message>, Message, Versioned<Message>
All Known Subinterfaces:
ShoppingListLineItemAddedMessage, ShoppingListLineItemRemovedMessage

public interface ShoppingListMessage extends Message
ShoppingListMessage
Example to create an instance using the builder pattern

     ShoppingListMessage shoppingListMessage = ShoppingListMessage.builder()
             .id("{id}")
             .version(0.3)
             .createdAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .lastModifiedAt(ZonedDateTime.parse("2022-01-01T12:00:00.301Z"))
             .sequenceNumber(0.3)
             .resource(resourceBuilder -> resourceBuilder)
             .resourceVersion(0.3)
             .build()
 
  • Method Details

    • deepCopy

      factory method to create a deep copy of ShoppingListMessage
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • withShoppingListMessage

      default <T> T withShoppingListMessage(Function<ShoppingListMessage,T> helper)
      accessor map function
      Type Parameters:
      T - mapped type
      Parameters:
      helper - function to map the object
      Returns:
      mapped value
    • typeReference

      static com.fasterxml.jackson.core.type.TypeReference<ShoppingListMessage> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference