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 primary key column name of a document entity in 009 * a relational database. 010 * 011 * @author Alejandro González García 012 */ 013@XmlRootElement(name = "primaryKeyColumn") 014public final class PrimaryKeyColumnProcessingStepParameter extends AbstractProcessingStepParameter {}