2019-09-06 16:39:18 +02:00
|
|
|
package utils;
|
2016-10-04 17:54:59 +02:00
|
|
|
|
|
|
|
import com.fasterxml.jackson.databind.node.ObjectNode;
|
2016-09-13 18:52:27 +03:00
|
|
|
import play.libs.Json;
|
|
|
|
|
2016-10-04 17:54:59 +02:00
|
|
|
public class Util {
|
|
|
|
public static ObjectNode createResponse(Object response, boolean ok) {
|
|
|
|
ObjectNode result = Json.newObject();
|
2019-09-06 16:39:18 +02:00
|
|
|
result.put("isSuccessful", ok);
|
|
|
|
if (response instanceof String) {
|
2016-10-04 17:54:59 +02:00
|
|
|
result.put("body", (String) response);
|
2019-09-06 16:39:18 +02:00
|
|
|
} else {
|
|
|
|
result.putPOJO("body", response);
|
|
|
|
}
|
2016-10-04 17:54:59 +02:00
|
|
|
return result;
|
|
|
|
}
|
2019-09-06 16:39:18 +02:00
|
|
|
}
|