core.error.EpikosError Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of EpikosRestService Show documentation
Show all versions of EpikosRestService Show documentation
Epikos is a Rest Serivce framework which can be extend to develop any other Rest API/Services. For more
detail please checkout github (https://github.com/epikosrest/epikos.git)
package core.error;
import core.domain.enums.Status;
import javax.ws.rs.core.Response;
import javax.xml.bind.annotation.XmlRootElement;
/**
* Created by nitina on 6/2/16.
*/
@XmlRootElement(name = "EpikosError")
public class EpikosError {
private String message;
private int id;
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
}