File tree Expand file tree Collapse file tree 1 file changed +22
-19
lines changed
src/main/java/com/cribbstechnologies/clients/mandrill/model Expand file tree Collapse file tree 1 file changed +22
-19
lines changed Original file line number Diff line number Diff line change 11package com .cribbstechnologies .clients .mandrill .model ;
22
3+ import org .codehaus .jackson .annotate .JsonIgnoreProperties ;
4+
5+ @ JsonIgnoreProperties (ignoreUnknown = true )
36public class MandrillResponse {
47
5- private String responseString ;
6- private boolean success ;
7-
8- public String getJsonResponse () {
9- return responseString ;
10- }
11-
12- public void setResponseString (String jsonResponse ) {
13- this .responseString = jsonResponse ;
14- }
15-
16- public boolean isSuccess () {
17- return success ;
18- }
19-
20- public void setSuccess (boolean success ) {
21- this .success = success ;
22- }
23-
8+ private String responseString ;
9+ private boolean success ;
10+
11+ public String getJsonResponse () {
12+ return responseString ;
13+ }
14+
15+ public void setResponseString (String jsonResponse ) {
16+ this .responseString = jsonResponse ;
17+ }
18+
19+ public boolean isSuccess () {
20+ return success ;
21+ }
22+
23+ public void setSuccess (boolean success ) {
24+ this .success = success ;
25+ }
26+
2427}
You can’t perform that action at this time.
0 commit comments