@GET
@Path("/auth{params:.*}")
public Response loadJson(@Context HttpServletRequest request, @PathParam("params") String params) throws DotStateException,
DotDataException, DotSecurityException {
// force authentication
InitDataObject auth = init(null, true, request, true);
User user = auth.getUser();
String username = (user != null) ? user.getFullName() : " unknown ";
CacheControl cc = new CacheControl();
cc.setNoCache(true);
ResponseBuilder builder = Response.ok("{\"result\":\"/test/" + username + " GET!\"}", "application/json");
return builder.cacheControl(cc).build();