uk.gov.legislation.namespaces.metadata.BlanketAmendment 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.*;
/**
* 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="IdURI" use="required" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="title" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "")
@XmlRootElement(name = "BlanketAmendment")
public class BlanketAmendment {
@XmlAttribute(name = "IdURI", required = true)
@XmlSchemaType(name = "anyURI")
protected String idURI;
@XmlAttribute(name = "title")
protected String title;
/**
* Gets the value of the idURI property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getIdURI() {
return idURI;
}
/**
* Sets the value of the idURI property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setIdURI(String value) {
this.idURI = value;
}
/**
* Gets the value of the title property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getTitle() {
return title;
}
/**
* Sets the value of the title property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setTitle(String value) {
this.title = value;
}
}