Skip to content
Snippets Groups Projects
Commit 90e4761a authored by Lars Johansson's avatar Lars Johansson
Browse files

Refactor response class for clarity

parent 6693c370
No related branches found
No related tags found
No related merge requests found
Pipeline #187789 passed
...@@ -39,19 +39,6 @@ public class Response { ...@@ -39,19 +39,6 @@ public class Response {
private static HttpHeaders HEADER_JSON; private static HttpHeaders HEADER_JSON;
/**
* Return http header for content type json.
*
* @return http header
*/
public static HttpHeaders getHeaderJson() {
if (HEADER_JSON == null) {
HEADER_JSON = new HttpHeaders();
HEADER_JSON.add(Response.CONTENT_TYPE, Response.APP_JSON);
}
return HEADER_JSON;
}
@Schema(description = "Message of the response.") @Schema(description = "Message of the response.")
private String message = null; private String message = null;
@Schema(description = "Details for the message of the response.") @Schema(description = "Details for the message of the response.")
...@@ -83,6 +70,19 @@ public class Response { ...@@ -83,6 +70,19 @@ public class Response {
this.field = field; this.field = field;
} }
/**
* Return http header for content type json.
*
* @return http header
*/
public static HttpHeaders getHeaderJson() {
if (HEADER_JSON == null) {
HEADER_JSON = new HttpHeaders();
HEADER_JSON.add(Response.CONTENT_TYPE, Response.APP_JSON);
}
return HEADER_JSON;
}
/** /**
* Return response message. * Return response message.
* *
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment