001// SPDX-License-Identifier: GPL-3.0-or-later
002
003package es.uvigo.esei.sing.textproc.step.xml.definition;
004
005import javax.xml.bind.annotation.XmlRootElement;
006
007/**
008 * Parameter that specifies the text column name of a document entity in a
009 * relational database.
010 *
011 * @author Alejandro González García
012 */
013@XmlRootElement(name = "textColumn")
014public final class TextColumnProcessingStepParameter extends AbstractProcessingStepParameter {}