mirror of
https://github.com/CappielloAntonio/tempo.git
synced 2026-01-30 06:12:07 +00:00
Removed comment
This commit is contained in:
@@ -1,45 +1,28 @@
|
||||
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 {
|
||||
@Attribute(converter = ErrorCodeConverter.class)
|
||||
protected ErrorCode code;
|
||||
@Attribute
|
||||
protected String message;
|
||||
|
||||
/**
|
||||
* Gets the value of the code property.
|
||||
*
|
||||
* @return possible object is
|
||||
* {@link ErrorCode }
|
||||
*/
|
||||
public ErrorCode getCode() {
|
||||
return code;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the code property.
|
||||
*
|
||||
* @param value allowed object is
|
||||
* {@link ErrorCode }
|
||||
*/
|
||||
public void setCode(ErrorCode value) {
|
||||
this.code = value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Gets the value of the message property.
|
||||
*
|
||||
* @return possible object is
|
||||
* {@link String }
|
||||
*/
|
||||
public String getMessage() {
|
||||
return message;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the value of the message property.
|
||||
*
|
||||
* @param value allowed object is
|
||||
* {@link String }
|
||||
*/
|
||||
public void setMessage(String value) {
|
||||
this.message = value;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user