Description:
|
Test case: o.h.test.annotations.embedded.
EmbeddedTest's use of
Address
& Country.
Address
has annotated fields, but BasicPropertyAccessor
is
being used. It should be
a FIELD access type and is expected to use
DirectPropertyAccessor.
So far,
However since Country is annotated with
@
Embeddable classes are the only time I've seen this happen
AccessType("property")
,
so currently assuming the issue is limited to that
Address uses PROPERTY access (BasicPropertyAccessor)
.
|