argos/backend/core/src/main/java/org/opencdmp/commons/types/description/importexport/DescriptionExternalIdentifi...

33 lines
682 B
Java

package org.opencdmp.commons.types.description.importexport;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlElement;
@XmlAccessorType(XmlAccessType.FIELD)
public class DescriptionExternalIdentifierImportExport {
@XmlElement(name = "identifier")
private String identifier;
@XmlElement(name = "type")
private String type;
public String getIdentifier() {
return this.identifier;
}
public void setIdentifier(String identifier) {
this.identifier = identifier;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}