org.subsonic.restapi.ScanStatus 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 ScanStatus complex type.
*
*
The following schema fragment specifies the expected content contained within this class.
*
*
* <complexType name="ScanStatus">
* <complexContent>
* <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* <attribute name="scanning" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
* <attribute name="count" type="{http://www.w3.org/2001/XMLSchema}long" />
* </restriction>
* </complexContent>
* </complexType>
*
*
*
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "ScanStatus")
public class ScanStatus {
@XmlAttribute(name = "scanning", required = true)
protected boolean scanning;
@XmlAttribute(name = "count")
protected Long count;
/**
* Gets the value of the scanning property.
*
*/
public boolean isScanning() {
return scanning;
}
/**
* Sets the value of the scanning property.
*
*/
public void setScanning(boolean value) {
this.scanning = value;
}
/**
* Gets the value of the count property.
*
* @return
* possible object is
* {@link Long }
*
*/
public Long getCount() {
return count;
}
/**
* Sets the value of the count property.
*
* @param value
* allowed object is
* {@link Long }
*
*/
public void setCount(Long value) {
this.count = value;
}
}