001// 002// Diese Datei wurde mit der JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.0 generiert 003// Siehe <a href="https://javaee.github.io/jaxb-v2/">https://javaee.github.io/jaxb-v2/</a> 004// Änderungen an dieser Datei gehen bei einer Neukompilierung des Quellschemas verloren. 005// Generiert: 2021.01.02 um 05:50:33 PM CET 006// 007 008 009package info.psidev.cvmapping; 010 011import javax.xml.bind.annotation.XmlAccessType; 012import javax.xml.bind.annotation.XmlAccessorType; 013import javax.xml.bind.annotation.XmlAttribute; 014import javax.xml.bind.annotation.XmlID; 015import javax.xml.bind.annotation.XmlRootElement; 016import javax.xml.bind.annotation.XmlSchemaType; 017import javax.xml.bind.annotation.XmlType; 018import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; 019import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; 020 021 022/** 023 * <p>Java-Klasse für anonymous complex type. 024 * 025 * <p>Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. 026 * 027 * <pre> 028 * <complexType> 029 * <complexContent> 030 * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> 031 * <attribute name="cvIdentifier" use="required" type="{http://www.w3.org/2001/XMLSchema}ID" /> 032 * <attribute name="cvName" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> 033 * </restriction> 034 * </complexContent> 035 * </complexType> 036 * </pre> 037 * 038 * 039 */ 040@XmlAccessorType(XmlAccessType.FIELD) 041@XmlType(name = "") 042@XmlRootElement(name = "CvReference") 043public class CvReference { 044 045 @XmlAttribute(name = "cvIdentifier", required = true) 046 @XmlJavaTypeAdapter(CollapsedStringAdapter.class) 047 @XmlID 048 @XmlSchemaType(name = "ID") 049 protected String cvIdentifier; 050 @XmlAttribute(name = "cvName", required = true) 051 protected String cvName; 052 053 /** 054 * Ruft den Wert der cvIdentifier-Eigenschaft ab. 055 * 056 * @return 057 * possible object is 058 * {@link String } 059 * 060 */ 061 public String getCvIdentifier() { 062 return cvIdentifier; 063 } 064 065 /** 066 * Legt den Wert der cvIdentifier-Eigenschaft fest. 067 * 068 * @param value 069 * allowed object is 070 * {@link String } 071 * 072 */ 073 public void setCvIdentifier(String value) { 074 this.cvIdentifier = value; 075 } 076 077 /** 078 * Ruft den Wert der cvName-Eigenschaft ab. 079 * 080 * @return 081 * possible object is 082 * {@link String } 083 * 084 */ 085 public String getCvName() { 086 return cvName; 087 } 088 089 /** 090 * Legt den Wert der cvName-Eigenschaft fest. 091 * 092 * @param value 093 * allowed object is 094 * {@link String } 095 * 096 */ 097 public void setCvName(String value) { 098 this.cvName = value; 099 } 100 101}