mirror of
https://github.com/antebudimir/tempus.git
synced 2025-12-31 17:43:32 +00:00
Removed comment
This commit is contained in:
parent
a6c6ebe36d
commit
1a9e945790
1 changed files with 7 additions and 24 deletions
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue