Uses of Interface
org.axonframework.modelling.EntityIdResolver
Packages that use EntityIdResolver
Package
Description
-
Uses of EntityIdResolver in org.axonframework.eventsourcing.configuration
Method parameters in org.axonframework.eventsourcing.configuration with type arguments of type EntityIdResolverModifier and TypeMethodDescriptionEventSourcedEntityModule.EntityIdResolverPhase.entityIdResolver(ComponentBuilder<EntityIdResolver<ID>> entityIdResolver) Registers the givenComponentBuilderof anEntityIdResolveras the resolver for the event-sourced entity being built. -
Uses of EntityIdResolver in org.axonframework.modelling
Classes in org.axonframework.modelling that implement EntityIdResolverModifier and TypeClassDescriptionclassImplementation of aEntityIdResolverthat inspects the payload of aMessagefor an identifier. -
Uses of EntityIdResolver in org.axonframework.modelling.annotation
Classes in org.axonframework.modelling.annotation that implement EntityIdResolverModifier and TypeClassDescriptionclassImplementation of aEntityIdResolverthat inspects the payload of aMessagefor fields or methods annotated withTargetEntityId.Methods in org.axonframework.modelling.annotation that return EntityIdResolverModifier and TypeMethodDescription<E,ID> EntityIdResolver <ID> AnnotationBasedEntityIdResolverDefinition.createIdResolver(Class<E> entityType, Class<ID> idType, AnnotatedEntityMetamodel<E> entityMetamodel, Configuration configuration) <E,ID> EntityIdResolver <ID> EntityIdResolverDefinition.createIdResolver(Class<E> entityType, Class<ID> idType, AnnotatedEntityMetamodel<E> entityMetamodel, Configuration configuration) Creates anEntityIdResolverfor the given entity type and identifier type. -
Uses of EntityIdResolver in org.axonframework.modelling.configuration
Method parameters in org.axonframework.modelling.configuration with type arguments of type EntityIdResolverModifier and TypeMethodDescriptionStateBasedEntityModule.EntityIdResolverPhase.entityIdResolver(ComponentBuilder<EntityIdResolver<ID>> entityIdResolver) Registers the givenentityIdResolverto resolver the entity's identifiers from a givenMessagewhen loading. -
Uses of EntityIdResolver in org.axonframework.modelling.entity
Constructors in org.axonframework.modelling.entity with parameters of type EntityIdResolverModifierConstructorDescriptionEntityCommandHandlingComponent(Repository<ID, E> repository, EntityMetamodel<E> metamodel, EntityIdResolver<ID> idResolver) Creates a newCommandHandlingComponentthat handles commands for the given entity type. -
Uses of EntityIdResolver in org.axonframework.modelling.entity.annotation
Classes in org.axonframework.modelling.entity.annotation that implement EntityIdResolverModifier and TypeClassDescriptionclassImplementation of theEntityIdResolverthat converts the payload through the configuredMessageConverterthen takes the expected representation of the message handler from theAnnotatedEntityMetamodel.Methods in org.axonframework.modelling.entity.annotation that return EntityIdResolverModifier and TypeMethodDescription<E,ID> EntityIdResolver <ID> AnnotatedEntityIdResolverDefinition.createIdResolver(Class<E> entityType, Class<ID> idType, AnnotatedEntityMetamodel<E> entityMetamodel, Configuration configuration) Constructors in org.axonframework.modelling.entity.annotation with parameters of type EntityIdResolverModifierConstructorDescriptionAnnotatedEntityIdResolver(AnnotatedEntityMetamodel<?> metamodel, Class<ID> idType, MessageConverter converter, EntityIdResolver<ID> delegate) Constructs anAnnotatedEntityMetamodelEntityIdResolverfor the providedAnnotatedEntityMetamodel.