001/*-
002 * #%L
003 * Smile CDR - CDR
004 * %%
005 * Copyright (C) 2016 - 2025 Smile CDR, Inc.
006 * %%
007 * All rights reserved.
008 * #L%
009 */
010package ca.cdr.api.fhir.tokenization;
011
012import java.util.ArrayList;
013import java.util.List;
014
015/**
016 * This class contains a collection of tokens which are intended to be converted back
017 * into their original form and returned as a {@link DetokenizationResults} object.
018 */
019public class DetokenizationRequests extends ArrayList<DetokenizationRequest> {
020
021        /**
022         * Constructor
023         */
024        public DetokenizationRequests(List<DetokenizationRequest> theRequests) {
025                super(theRequests);
026        }
027}