public class AggregateMemberAnnotatedChildEntityCollectionDefinition extends AbstractChildEntityDefinition
AbstractChildEntityDefinition that is used to detect Collections of entities
(field type assignable to Iterable) annotated with AggregateMember. If such a field is found a ChildEntity is created that delegates to the entities in the annotated collection.| Constructor and Description |
|---|
AggregateMemberAnnotatedChildEntityCollectionDefinition() |
| Modifier and Type | Method and Description |
|---|---|
protected <T> EntityModel<Object> |
extractChildEntityModel(EntityModel<T> declaringEntity,
Map<String,Object> attributes,
Field field)
Extracts the Child Entity contained in the given
declaringEntity as an EntityModel. |
protected boolean |
isFieldTypeSupported(Field field)
Check whether the given
Field is of a type supported by this definition. |
protected <T> Object |
resolveCommandTarget(CommandMessage<?> msg,
T parent,
Field field,
EntityModel<Object> childEntityModel)
Resolve the target of an incoming
CommandMessage to the right Child
Entity. |
protected <T> Stream<Object> |
resolveEventTargets(EventMessage message,
T parentEntity,
Field field,
ForwardingMode eventForwardingMode)
Resolve the targets of an incoming
EventMessage to the right Child
Entities. |
createChildDefinition, extractCommandHandlerRoutingKeyspublic AggregateMemberAnnotatedChildEntityCollectionDefinition()
protected boolean isFieldTypeSupported(Field field)
AbstractChildEntityDefinitionField is of a type supported by this definition.isFieldTypeSupported in class AbstractChildEntityDefinitionfield - a Field containing a Child Entityprotected <T> EntityModel<Object> extractChildEntityModel(EntityModel<T> declaringEntity, Map<String,Object> attributes, Field field)
AbstractChildEntityDefinitiondeclaringEntity as an EntityModel.
The type of the Child Entity is defined through a key in the provided attributes or based on given
Field.extractChildEntityModel in class AbstractChildEntityDefinitionT - the type T of the given declaringEntity EntityModeldeclaringEntity - the EntityModel declaring the given fieldattributes - a Map containing the AggregateMember attributesfield - the Field containing the Child Entity.declaringEntityprotected <T> Object resolveCommandTarget(CommandMessage<?> msg, T parent, Field field, EntityModel<Object> childEntityModel)
AbstractChildEntityDefinitionCommandMessage to the right Child
Entity. Returns the Child Entity the msg needs to be routed to.resolveCommandTarget in class AbstractChildEntityDefinitionT - the type T of the given parent Entitymsg - the CommandMessage which is being resolved to a
target entityparent - the parent Entity of type T of this Child Entityfield - the Field containing the Child Entity.childEntityModel - the EntityModel for the Child EntityCommandMessage.protected <T> Stream<Object> resolveEventTargets(EventMessage message, T parentEntity, Field field, ForwardingMode eventForwardingMode)
AbstractChildEntityDefinitionEventMessage to the right Child
Entities. Returns a Stream of all the Child Entities the Event Message should be
routed to.resolveEventTargets in class AbstractChildEntityDefinitionT - the type T of the given parent Entitymessage - the EventMessage to routeparentEntity - the parent Entity of type T of this Child Entityfield - the Field containing the Child EntityeventForwardingMode - the ForwardingMode used to filter the message to route based on the
ForwardingMode implementationStream of Child Entity targets for the incoming
EventMessageCopyright © 2010–2020. All rights reserved.