001package ca.cdr.api.fhir.tokenization; 002 003import java.util.ArrayList; 004import java.util.List; 005 006/** 007 * This class contains a collection of tokens which are intended to be converted back 008 * into their original form and returned as a {@link DetokenizationResults} object. 009 */ 010public class DetokenizationRequests extends ArrayList<DetokenizationRequest> { 011 012 /** 013 * Constructor 014 */ 015 public DetokenizationRequests(List<DetokenizationRequest> theRequests) { 016 super(theRequests); 017 } 018}