@Produces(MediaType.APPLICATION_JSON)
public Response getUDFList(@Context UriInfo ui) {
try {
LOG.debug("Getting all UDFs");
List allUDFs = getResourceManager().readAll(
new OnlyOwnersFilteringStrategy(this.context.getUsername()));
JSONObject object = new JSONObject();
object.put("udfs", allUDFs);
return Response.ok(object).build();
} catch (WebApplicationException ex) {