org.subsonic.restapi.AlbumInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of subsonic-client Show documentation
Show all versions of subsonic-client Show documentation
Java client for the Subsonic API
The newest version!
//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.3.2
// See https://javaee.github.io/jaxb-v2/
// Any modifications to this file will be lost upon recompilation of the source schema.
// Generated on: 2024.08.24 at 07:14:02 PM CEST
//
package org.subsonic.restapi;
import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for AlbumInfo complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="AlbumInfo">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <sequence>
* <element name="notes" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="musicBrainzId" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="lastFmUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="smallImageUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="mediumImageUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* <element name="largeImageUrl" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
* </sequence>
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "AlbumInfo", propOrder = {
"notes",
"musicBrainzId",
"lastFmUrl",
"smallImageUrl",
"mediumImageUrl",
"largeImageUrl"
})
public class AlbumInfo {
protected String notes;
protected String musicBrainzId;
protected String lastFmUrl;
protected String smallImageUrl;
protected String mediumImageUrl;
protected String largeImageUrl;
/**
* Gets the value of the notes property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getNotes() {
return notes;
}
/**
* Sets the value of the notes property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setNotes(String value) {
this.notes = value;
}
/**
* Gets the value of the musicBrainzId property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMusicBrainzId() {
return musicBrainzId;
}
/**
* Sets the value of the musicBrainzId property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMusicBrainzId(String value) {
this.musicBrainzId = value;
}
/**
* Gets the value of the lastFmUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLastFmUrl() {
return lastFmUrl;
}
/**
* Sets the value of the lastFmUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLastFmUrl(String value) {
this.lastFmUrl = value;
}
/**
* Gets the value of the smallImageUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getSmallImageUrl() {
return smallImageUrl;
}
/**
* Sets the value of the smallImageUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setSmallImageUrl(String value) {
this.smallImageUrl = value;
}
/**
* Gets the value of the mediumImageUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getMediumImageUrl() {
return mediumImageUrl;
}
/**
* Sets the value of the mediumImageUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setMediumImageUrl(String value) {
this.mediumImageUrl = value;
}
/**
* Gets the value of the largeImageUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getLargeImageUrl() {
return largeImageUrl;
}
/**
* Sets the value of the largeImageUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setLargeImageUrl(String value) {
this.largeImageUrl = value;
}
}