I think you would need to define that requirement a bit more before it would be realistic to answer it.
HAPI FHIR's JPA server will by default store exactly what it is sent, and will not modify it in any way. The only exception is that the server won't persist data elements that don't exist in the FHIR standard (e.g. an element named "foo" in the Patient resource would either be ignored or rejected with an error depending on config, but would not be persisted either way. FHIR does not allow undeclared elements outside of the defined extension mechanism.) so unless you have specifically configured the system to make modifications to data before saving, the data won't be modified.
Cheers,
James