A way to declare a converter for an individual field would be nice.
Current Workaround: Create type like record Encrypted(String value) and install a global Converter<Encrypted,String> and back. This necessitates handling the superflous wrapper type in the entity.
A way to declare a converter for an individual field would be nice.
Current Workaround: Create type like
record Encrypted(String value)and install a globalConverter<Encrypted,String>and back. This necessitates handling the superflous wrapper type in the entity.