org.subsonic.restapi.InternetRadioStation 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
/**
* Java class for InternetRadioStation complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="InternetRadioStation">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="streamUrl" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
* <attribute name="homePageUrl" type="{http://www.w3.org/2001/XMLSchema}string" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "InternetRadioStation")
public class InternetRadioStation {
@XmlAttribute(name = "id", required = true)
protected String id;
@XmlAttribute(name = "name", required = true)
protected String name;
@XmlAttribute(name = "streamUrl", required = true)
protected String streamUrl;
@XmlAttribute(name = "homePageUrl")
protected String homePageUrl;
/**
* 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 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 streamUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getStreamUrl() {
return streamUrl;
}
/**
* Sets the value of the streamUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setStreamUrl(String value) {
this.streamUrl = value;
}
/**
* Gets the value of the homePageUrl property.
*
* @return
* possible object is
* {@link String }
*
*/
public String getHomePageUrl() {
return homePageUrl;
}
/**
* Sets the value of the homePageUrl property.
*
* @param value
* allowed object is
* {@link String }
*
*/
public void setHomePageUrl(String value) {
this.homePageUrl = value;
}
}