| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- package dtos.error;
-
- import java.util.HashMap;
- import java.util.List;
- import java.util.Map;
-
-
- public class ErrorDetail {
-
- private String title;
- private int status;
- private String detail;
- private long timeStamp;
- private String developerMessage;
- private Map<String, List<ValidationError>> errors = new HashMap<String, List<ValidationError>>();
-
- public String getTitle() {
- return title;
- }
-
- public void setTitle(String title) {
- this.title = title;
- }
-
- public int getStatus() {
- return status;
- }
-
- public void setStatus(int status) {
- this.status = status;
- }
-
- public String getDetail() {
- return detail;
- }
-
- public void setDetail(String detail) {
- this.detail = detail;
- }
-
- public long getTimeStamp() {
- return timeStamp;
- }
-
- public void setTimeStamp(long timeStamp) {
- this.timeStamp = timeStamp;
- }
-
- public String getDeveloperMessage() {
- return developerMessage;
- }
-
- public void setDeveloperMessage(String developerMessage) {
- this.developerMessage = developerMessage;
- }
- }
|