org.musicbrainz.ns.mmd_2.Collection Maven / Gradle / Ivy
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, vhudson-jaxb-ri-2.1-833
// See http://java.sun.com/xml/jaxb
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2015.04.12 at 04:01:25 PM CEST
//
package org.musicbrainz.ns.mmd_2;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlRootElement;
import javax.xml.bind.annotation.XmlSchemaType;
import javax.xml.bind.annotation.XmlType;
/**
* 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">
* <sequence>
* <element ref="{http://musicbrainz.org/ns/mmd-2.0#}name"/>
* <element name="editor" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element ref="{http://musicbrainz.org/ns/mmd-2.0#}release-list" minOccurs="0"/>
* <element ref="{http://musicbrainz.org/ns/mmd-2.0#}event-list" minOccurs="0"/>
* </sequence>
* <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* <attribute name="entity-type" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "", propOrder = {
"name",
"editor",
"releaseList",
"eventList"
})
@XmlRootElement(name = "collection")
public class Collection {
@XmlElement(required = true)
protected String name;
protected String editor;
@XmlElement(name = "release-list")
protected ReleaseList releaseList;
@XmlElement(name = "event-list")
protected EventList eventList;
@XmlAttribute
@XmlSchemaType(name = "anyURI")
protected String id;
@XmlAttribute
@XmlSchemaType(name = "anyURI")
protected String type;
@XmlAttribute(name = "entity-type")
@XmlSchemaType(name = "anyURI")
protected String entityType;
/**
* 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 editor property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEditor() {
return editor;
}
/**
* Sets the value of the editor property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEditor(String value) {
this.editor = value;
}
/**
* Gets the value of the releaseList property.
*
* @return
* possible object is
* {@link ReleaseList }
*
*/
public ReleaseList getReleaseList() {
return releaseList;
}
/**
* Sets the value of the releaseList property.
*
* @param value
* allowed object is
* {@link ReleaseList }
*
*/
public void setReleaseList(ReleaseList value) {
this.releaseList = value;
}
/**
* Gets the value of the eventList property.
*
* @return
* possible object is
* {@link EventList }
*
*/
public EventList getEventList() {
return eventList;
}
/**
* Sets the value of the eventList property.
*
* @param value
* allowed object is
* {@link EventList }
*
*/
public void setEventList(EventList value) {
this.eventList = value;
}
/**
* Gets the value of the id property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getId() {
return id;
}
/**
* Sets the value of the id property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setId(String value) {
this.id = value;
}
/**
* Gets the value of the type property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getType() {
return type;
}
/**
* Sets the value of the type property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setType(String value) {
this.type = value;
}
/**
* Gets the value of the entityType property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getEntityType() {
return entityType;
}
/**
* Sets the value of the entityType property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setEntityType(String value) {
this.entityType = value;
}
}