uk.gov.legislation.namespaces.metadata.Section Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of legislation-gov-uk Show documentation
Show all versions of legislation-gov-uk Show documentation
Java library for consuming the Legislation.gov.uk API
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.2.4-2
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.08.07 at 06:17:52 PM CEST
//
package uk.gov.legislation.namespaces.metadata;
import javax.xml.bind.annotation.*;
import javax.xml.bind.annotation.adapters.CollapsedStringAdapter;
import javax.xml.bind.annotation.adapters.XmlJavaTypeAdapter;
/**
* Java class for anonymous complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType>
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="Ref" use="required" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="URI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="FoundRef" type="{http://www.w3.org/2001/XMLSchema}NMTOKEN" />
* <attribute name="Missing" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"content"
})
@XmlRootElement(name = "Section")
public class Section {
@XmlValue
protected String content;
@XmlAttribute(name = "Ref", required = true)
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String ref;
@XmlAttribute(name = "URI", required = true)
@XmlSchemaType(name = "anyURI")
protected String uri;
@XmlAttribute(name = "FoundRef")
@XmlJavaTypeAdapter(CollapsedStringAdapter.class)
@XmlSchemaType(name = "NMTOKEN")
protected String foundRef;
@XmlAttribute(name = "Missing")
protected Boolean missing;
/**
* Gets the value of the content property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getContent() {
return content;
}
/**
* Sets the value of the content property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setContent(String value) {
this.content = value;
}
/**
* Gets the value of the ref property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getRef() {
return ref;
}
/**
* Sets the value of the ref property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setRef(String value) {
this.ref = value;
}
/**
* Gets the value of the uri property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getURI() {
return uri;
}
/**
* Sets the value of the uri property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setURI(String value) {
this.uri = value;
}
/**
* Gets the value of the foundRef property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getFoundRef() {
return foundRef;
}
/**
* Sets the value of the foundRef property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setFoundRef(String value) {
this.foundRef = value;
}
/**
* Gets the value of the missing property.
*
* @return
* possible object is
* {@link Boolean }
*
*/
public Boolean isMissing() {
return missing;
}
/**
* Sets the value of the missing property.
*
* @param value
* allowed object is
* {@link Boolean }
*
*/
public void setMissing(Boolean value) {
this.missing = value;
}
}