/******************************************************************************* * Copyright (c) 2014, 2015 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 v1.0 and Eclipse Distribution License v. 1.0 * which accompanies this distribution. * The Eclipse Public License is available at http://www.eclipse.org/legal/epl-v10.html * and the Eclipse Distribution License is available at * http://www.eclipse.org/org/documents/edl-v10.php. * * Contributors: * Martin Vojtek - 2.6.0 - initial implementation ******************************************************************************/ package org.eclipse.persistence.testing.perf.largexml.bigpo.core_component_parameters; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlSchemaType; import javax.xml.bind.annotation.XmlType; import javax.xml.bind.annotation.adapters.CollapsedStringAdapter; import javax.xml.bind.annotation.adapters.NormalizedStringAdapter; import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter; /** * <p>Java class for InstanceType complex type. * * <p>The following schema fragment specifies the expected content contained within this class. * * <pre> * <complexType name="InstanceType"> * <complexContent> * <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> * <sequence> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}Name" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}CodeListID" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}CodeListAgencyID" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}CodeListAgencyName" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}CodeListName" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}CodeListVersionID" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}CodeListURI" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}CodeListSchemeURI" minOccurs="0"/> * <element ref="{urn:oasis:names:specification:ubl:schema:xsd:CoreComponentParameters-1.0}LanguageID" minOccurs="0"/> * </sequence> * </restriction> * </complexContent> * </complexType> * </pre> * * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "InstanceType", propOrder = { "name", "codeListID", "codeListAgencyID", "codeListAgencyName", "codeListName", "codeListVersionID", "codeListURI", "codeListSchemeURI", "languageID" }) public class InstanceType { @XmlElement(name = "Name") protected String name; @XmlElement(name = "CodeListID") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String codeListID; @XmlElement(name = "CodeListAgencyID") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String codeListAgencyID; @XmlElement(name = "CodeListAgencyName") protected String codeListAgencyName; @XmlElement(name = "CodeListName") protected String codeListName; @XmlElement(name = "CodeListVersionID") @XmlJavaTypeAdapter(NormalizedStringAdapter.class) @XmlSchemaType(name = "normalizedString") protected String codeListVersionID; @XmlElement(name = "CodeListURI") @XmlSchemaType(name = "anyURI") protected String codeListURI; @XmlElement(name = "CodeListSchemeURI") @XmlSchemaType(name = "anyURI") protected String codeListSchemeURI; @XmlElement(name = "LanguageID") @XmlJavaTypeAdapter(CollapsedStringAdapter.class) @XmlSchemaType(name = "language") protected String languageID; /** * 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 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 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; } /** * 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; } }