I have an endpoint in gae, but I need to be able to return a String that contains a json, without creating a POJO, but I have not found a way to do it, this is one of my endpoinds:
@ApiMethod(name = "get", httpMethod = "POST", path = "/get")
public String get() {
return "{"defenseCards": "fsdfsd","friends": 5,"previousRank": 0}";
}