public class AggregateMemberAnnotatedChildEntityDefinition extends AbstractChildEntityDefinition
ChildEntityDefinition
that is used to detect single entities annotated with
AggregateMember
. If such a field is found a ChildEntity
is created that delegates to the entity.Constructor and Description |
---|
AggregateMemberAnnotatedChildEntityDefinition() |
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, extractCommandHandlerRoutingKeys
public AggregateMemberAnnotatedChildEntityDefinition()
protected boolean isFieldTypeSupported(Field field)
AbstractChildEntityDefinition
Field
is of a type supported by this definition.isFieldTypeSupported
in class AbstractChildEntityDefinition
field
- a Field
containing a Child Entityprotected <T> EntityModel<Object> extractChildEntityModel(EntityModel<T> declaringEntity, Map<String,Object> attributes, Field field)
AbstractChildEntityDefinition
declaringEntity
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 AbstractChildEntityDefinition
T
- the type T
of the given declaringEntity
EntityModel
declaringEntity
- the EntityModel
declaring the given field
attributes
- a Map
containing the AggregateMember
attributesfield
- the Field
containing the Child Entity.declaringEntity
protected <T> Object resolveCommandTarget(CommandMessage<?> msg, T parent, Field field, EntityModel<Object> childEntityModel)
AbstractChildEntityDefinition
CommandMessage
to the right Child
Entity. Returns the Child Entity the msg
needs to be routed to.resolveCommandTarget
in class AbstractChildEntityDefinition
T
- 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)
AbstractChildEntityDefinition
EventMessage
to the right Child
Entities. Returns a Stream
of all the Child Entities the Event Message should be
routed to.resolveEventTargets
in class AbstractChildEntityDefinition
T
- 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
EventMessage
Copyright © 2010–2020. All rights reserved.