CodeWithAuthorityType.java

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference
// Implementation, v2.2.8-b130911.1802
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a>
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2016.12.07 at 02:40:39 PM CET
//

package nl.b3p.topnl.top100nl;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;

/**
 * gml:CodeWithAuthorityType requires that the codeSpace attribute is provided in an instance.
 *
 * <p>Java class for CodeWithAuthorityType complex type.
 *
 * <p>The following schema fragment specifies the expected content contained within this class.
 *
 * <pre>
 * &lt;complexType name="CodeWithAuthorityType">
 *   &lt;simpleContent>
 *     &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
 *       &lt;attribute name="codeSpace" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
 *     &lt;/extension>
 *   &lt;/simpleContent>
 * &lt;/complexType>
 * </pre>
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(
    name = "CodeWithAuthorityType",
    propOrder = {"value"})
public class CodeWithAuthorityType {

  @XmlValue protected String value;

  @XmlAttribute(name = "codeSpace", required = true)
  @XmlSchemaType(name = "anyURI")
  protected String codeSpace;

  /**
   * 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 codeSpace property.
   *
   * @return possible object is {@link String }
   */
  public String getCodeSpace() {
    return codeSpace;
  }

  /**
   * Sets the value of the codeSpace property.
   *
   * @param value allowed object is {@link String }
   */
  public void setCodeSpace(String value) {
    this.codeSpace = value;
  }
}