blob: ab1dd0fa49ff90d7178f19eac6247d1e429f00b2 [file] [log] [blame]
/*
* Copyright (c) 2014, 2020 Oracle and/or its affiliates. All rights reserved.
*
* This program and the accompanying materials are made available under the
* terms of the Eclipse Public License v. 2.0 which is available at
* http://www.eclipse.org/legal/epl-2.0,
* or the Eclipse Distribution License v. 1.0 which is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: EPL-2.0 OR BSD-3-Clause
*/
// Contributors:
// Martin Vojtek - 2.6.0 - initial implementation
package org.eclipse.persistence.testing.perf.largexml.bigpo.core_component_types;
import jakarta.xml.bind.annotation.XmlAccessType;
import jakarta.xml.bind.annotation.XmlAccessorType;
import jakarta.xml.bind.annotation.XmlAttribute;
import jakarta.xml.bind.annotation.XmlSchemaType;
import jakarta.xml.bind.annotation.XmlSeeAlso;
import jakarta.xml.bind.annotation.XmlType;
import jakarta.xml.bind.annotation.XmlValue;
import jakarta.xml.bind.annotation.adapters.CollapsedStringAdapter;
import jakarta.xml.bind.annotation.adapters.NormalizedStringAdapter;
import jakarta.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
*
* <pre>
* &lt;?xml version="1.0" encoding="UTF-8"?&gt;&lt;ccts:Component xmlns:ccts="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0" xmlns="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentTypes-1.0" xmlns:cct="urn:oasis:names:specification:ubl:schema:xsd:CoreComponentTypes-1.0" xmlns:xsd="http://www.w3.org/2001/XMLSchema"&gt;&lt;ccts:ComponentType&gt;CCT&lt;/ccts:ComponentType&gt;&lt;ccts:DictionaryEntryName&gt;Code. Type&lt;/ccts:DictionaryEntryName&gt;&lt;ccts:Definition&gt;A character string (letters, figures, or symbols) that for brevity and/or languange independence may be used to represent or replace a definitive value or text of an attribute together with relevant supplementary information.&lt;/ccts:Definition&gt;&lt;ccts:ObjectClass&gt;Code&lt;/ccts:ObjectClass&gt;&lt;ccts:PropertyTerm&gt;Type&lt;/ccts:PropertyTerm&gt;&lt;/ccts:Component&gt;
* </pre>
*
*
* <p>Java class for CodeType complex type.
*
* <p>The following schema fragment specifies the expected content contained within this class.
*
* <pre>
* &lt;complexType name="CodeType">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>normalizedString">
* &lt;attribute name="codeListID" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
* &lt;attribute name="codeListAgencyID" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
* &lt;attribute name="codeListAgencyName" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="codeListName" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="codeListVersionID" type="{http://www.w3.org/2001/XMLSchema}normalizedString" />
* &lt;attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
* &lt;attribute name="languageID" type="{http://www.w3.org/2001/XMLSchema}language" />
* &lt;attribute name="codeListURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;attribute name="codeListSchemeURI" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/complexType>
* </pre>
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "CodeType", propOrder = {
"value"
})
@XmlSeeAlso({
org.eclipse.persistence.testing.perf.largexml.bigpo.unspecialized_data_types.CodeType.class
})
public class CodeType {
@XmlValue
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String value;
@XmlAttribute(name = "codeListID")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String codeListID;
@XmlAttribute(name = "codeListAgencyID")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String codeListAgencyID;
@XmlAttribute(name = "codeListAgencyName")
protected String codeListAgencyName;
@XmlAttribute(name = "codeListName")
protected String codeListName;
@XmlAttribute(name = "codeListVersionID")
@XmlJavaTypeAdapter(NormalizedStringAdapter.class)
@XmlSchemaType(name = "normalizedString")
protected String codeListVersionID;
@XmlAttribute(name = "name")
protected String name;
@XmlAttribute(name = "languageID")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "language")
protected String languageID;
@XmlAttribute(name = "codeListURI")
@XmlSchemaType(name = "anyURI")
protected String codeListURI;
@XmlAttribute(name = "codeListSchemeURI")
@XmlSchemaType(name = "anyURI")
protected String codeListSchemeURI;
/**
* Gets the value of the value property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getValue() {
return value;
}
/**
* Sets the value of the value property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setValue(String value) {
this.value = value;
}
/**
* Gets the value of the codeListID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeListID() {
return codeListID;
}
/**
* Sets the value of the codeListID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeListID(String value) {
this.codeListID = value;
}
/**
* Gets the value of the codeListAgencyID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeListAgencyID() {
return codeListAgencyID;
}
/**
* Sets the value of the codeListAgencyID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeListAgencyID(String value) {
this.codeListAgencyID = value;
}
/**
* Gets the value of the codeListAgencyName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeListAgencyName() {
return codeListAgencyName;
}
/**
* Sets the value of the codeListAgencyName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeListAgencyName(String value) {
this.codeListAgencyName = value;
}
/**
* Gets the value of the codeListName property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeListName() {
return codeListName;
}
/**
* Sets the value of the codeListName property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeListName(String value) {
this.codeListName = value;
}
/**
* Gets the value of the codeListVersionID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeListVersionID() {
return codeListVersionID;
}
/**
* Sets the value of the codeListVersionID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeListVersionID(String value) {
this.codeListVersionID = value;
}
/**
* Gets the value of the name property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getName() {
return name;
}
/**
* Sets the value of the name property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setName(String value) {
this.name = value;
}
/**
* Gets the value of the languageID property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLanguageID() {
return languageID;
}
/**
* Sets the value of the languageID property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLanguageID(String value) {
this.languageID = value;
}
/**
* Gets the value of the codeListURI property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeListURI() {
return codeListURI;
}
/**
* Sets the value of the codeListURI property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeListURI(String value) {
this.codeListURI = value;
}
/**
* Gets the value of the codeListSchemeURI property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getCodeListSchemeURI() {
return codeListSchemeURI;
}
/**
* Sets the value of the codeListSchemeURI property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setCodeListSchemeURI(String value) {
this.codeListSchemeURI = value;
}
}