Hello,
I have a class CommunicationProvider with a create method annotated with Create annotation.
@Create
public MethodOutcome create(@ResourceParam Communication communication){
}
I'm not able to test the provider using Rest Assured because it throws an exception due to Jackson serialization/deserialization (FHIR uses its owns parsers).
Is there a way to change the create method signature to something like
@Create
public MethodOutcome create(String jsonCommunication){
}
Thanks.