Package io.fluxcapacitor.javaclient.modeling
package io.fluxcapacitor.javaclient.modeling
-
ClassDescriptionMarks a class as the root of an aggregate in the domain model.Represents the root of an aggregate in a domain model.Annotation used on properties of an entity value that provide an alternative identifier to find the entity.Represents an event that has been applied to an aggregate along with its intended publication strategy.Annotation to mark methods or fields that assert whether a command or query is legal, given the current state of an aggregate.A batching wrapper for
HandlerRepository
that delays persistence operations until the end of the current message batch.TheDefaultEntityHelper
provides the default implementation of theEntityHelper
interface.Decorates aDeserializingMessage
with an associated entity.Wraps a message and its corresponding entity for use in interception or handler invocation.Default implementation ofHandlerRepository
, backed by aDocumentStore
.A base implementation ofEntity
that forwards all method calls to a delegatedEntity
instance.Entity<T>Represents an entity that encapsulates domain behavior and state.Strategy interface for handling domain entity operations such as applying updates, validating state transitions, and intercepting updates.Marks a property (field or getter) as the unique identifier of an entity within an aggregate structure.Resolves handler method parameters that reference anEntity
or the entity's value.Controls whether an applied update should result in event publication.Strategy for controlling how applied updates (typically from@Apply
methods) are handled in terms of storage and publication.Repository interface for storing and retrieving@Stateful
handler instances.Represents an object, typically a message used for invocation, that has an associatedEntity
.Id<T>Object that represents the identifier of a specific entity.Immutable representation of anAggregateRoot
, extendingImmutableEntity
with additional metadata for event sourcing.Immutable implementation of theEntity
interface, representing a snapshot of a domain entity.A lazily-loaded implementation ofAggregateRoot
that defers deserialization and event application until the entity value is explicitly accessed.Indicates that the annotated field or getter represents a nested entity or collection of entities within an aggregate.A mutable, statefulAggregateRoot
implementation that allows in-place updates and applies events with commit support for persisting the state and synchronizing it with the Flux platform.A mutable view on a nested entity within aModifiableAggregateRoot
.NoOpEntity<T>A read-only, inertEntity
wrapper used exclusively during the loading phase of aggregate state.Represents configuration options extracted from the@Searchable
annotation on a domain type.A functional, non-persistentEntity
wrapper that enables safe state mutation and validation without producing side effects such as event publication or snapshot creation.