I have a service that provides insert, update, delete and some getter
methods to a Person object.
The Person Object contains an encrypted password property.
I need to be able to accept this property as part of the complex Person
when the insert or update methods in my service are called, but I do not
want to send this property out when a getter is called.
I have tried ignoring this property with Aegis mappings, but it seems
there is no way to ignore only on output. The property gets dropped
properly from the output I send, but also does not get set in my Java
object when a client calls the insert or update methods and provides the
property.
Am I missing something? Is there a way to be more explicit about when a
property should be ignored?
Thanks in advance,
Jack