Package ca.cdr.api.fhir.tokenization
Class DetokenizationRequest
java.lang.Object
ca.cdr.api.fhir.tokenization.DetokenizationRequest
This class represents a single request to "de-tokenize" a previously tokenized string.
The request will be processed by the same
ITokenizationProvider
that originally
provided the tokenized string.-
Constructor Summary
Constructors -
Method Summary
-
Constructor Details
-
DetokenizationRequest
Constructor
-
-
Method Details
-
getTarget
This is the object which will receive the detokenized value. For example, if an Identifier instance was originally passed to theITokenizationProvider.tokenize(RequestDetails, TokenizationRequests)
method, then this will contain an empty Identifier instance. The provider does not need to modify or otherwise touch this object, but it is provided in case it will be helpful to the de-tokenization algorithm. -
getToken
This is the token string which needs to be reversed. In other words, this is the string that was previously supplied toTokenizationResults.addResult(TokenizationRequest, String)
by the provider.
-