Removed comment

This commit is contained in:
CappielloAntonio 2021-07-25 14:43:48 +02:00
parent a6c6ebe36d
commit 1a9e945790

View file

@ -1,45 +1,28 @@
package com.cappielloantonio.play.subsonic.models; package com.cappielloantonio.play.subsonic.models;
import com.cappielloantonio.play.subsonic.utils.converter.ErrorCodeConverter;
import com.tickaroo.tikxml.annotation.Attribute;
import com.tickaroo.tikxml.annotation.Xml;
@Xml
public class Error { public class Error {
@Attribute(converter = ErrorCodeConverter.class)
protected ErrorCode code; protected ErrorCode code;
@Attribute
protected String message; protected String message;
/**
* Gets the value of the code property.
*
* @return possible object is
* {@link ErrorCode }
*/
public ErrorCode getCode() { public ErrorCode getCode() {
return code; return code;
} }
/**
* Sets the value of the code property.
*
* @param value allowed object is
* {@link ErrorCode }
*/
public void setCode(ErrorCode value) { public void setCode(ErrorCode value) {
this.code = value; this.code = value;
} }
/**
* Gets the value of the message property.
*
* @return possible object is
* {@link String }
*/
public String getMessage() { public String getMessage() {
return message; return message;
} }
/**
* Sets the value of the message property.
*
* @param value allowed object is
* {@link String }
*/
public void setMessage(String value) { public void setMessage(String value) {
this.message = value; this.message = value;
} }