RestResponse.java
1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
package net.ziemers.swxercise.ui.utils;
import net.ziemers.swxercise.ui.enums.ResponseState;
public class RestResponse {
private ResponseState responseState;
private String message;
public RestResponse() {
this(ResponseState.SUCCESS);
}
public RestResponse(final ResponseState responseState) {
this.responseState = responseState;
}
public RestResponse(final ResponseState responseState, final String message) {
this(responseState);
this.message = message;
}
public int getResponseCode() {
return responseState.getResponseCode();
}
public String getResponseText() {
return responseState.getResponseText();
}
public String getMessage() { return message; }
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
RestResponse that = (RestResponse) o;
return responseState == that.responseState;
}
}