Package | Description |
---|---|
org.axonframework.common.property | |
org.axonframework.modelling.command.inspection |
Modifier and Type | Class and Description |
---|---|
class |
DirectlyAccessedProperty<T>
Property implementation that accesses public field to obtain a value of a property for a given instance.
|
class |
MethodAccessedProperty<T>
Property implementation that invokes a method to obtain a value of a property for a given instance.
|
Modifier and Type | Method and Description |
---|---|
static <T> Property<T> |
PropertyAccessStrategy.getProperty(Class<? extends T> targetClass,
String propertyName)
Iterates over all known PropertyAccessStrategy implementations to create a
Property instance for the
given parameters. |
protected <T> Property<T> |
DirectPropertyAccessStrategy.propertyFor(Class<? extends T> targetClass,
String property) |
protected abstract <T> Property<T> |
PropertyAccessStrategy.propertyFor(Class<? extends T> targetClass,
String property)
Returns a Property instance for the given
property , defined in given
targetClass , or null if no such property is found on the class. |
<T> Property<T> |
AbstractMethodPropertyAccessStrategy.propertyFor(Class<? extends T> targetClass,
String property) |
Modifier and Type | Method and Description |
---|---|
protected Map<String,Property<Object>> |
AbstractChildEntityDefinition.extractCommandHandlerRoutingKeys(Field field,
EntityModel<Object> childEntityModel)
Retrieves the routing keys of every command handler on the given
childEntityModel to be able to correctly
route commands to Entities. |
Copyright © 2010–2020. All rights reserved.