Package ca.uhn.fhir.rest.annotation
Annotation Type ConditionalUrlParam
On the
Update
, Create
and Delete
operation methods, this annotation
can be used to mark a String
parameter which will be populated with the
conditional "search" URL for the operation, if an incoming client invocation is
a conditional operation. For non-conditional invocations, the value will be set to
null
so it is important to handle null
.
Parameters annotated with this annotation must be of type String
-
Optional Element Summary
Modifier and TypeOptional ElementDescriptionboolean
Does this param support operating over multiple objects without throwing an error? This should be set totrue
only for conditional delete operations if the server supports multiple deletes via a conditional URL.
-
Element Details
-
supportsMultiple
boolean supportsMultipleDoes this param support operating over multiple objects without throwing an error? This should be set totrue
only for conditional delete operations if the server supports multiple deletes via a conditional URL.Note that this flag is only a hint to the Conformance statement generator, it does not actually affect how the server itself works.
- Default:
false
-