return myUserService;
}
public Map getSupportedFormats() {
Map theMap = new HashMap();
theMap.put("json", new JSONFormat());
theMap.put("html", new FreemarkerFormat("HTMLTemplates/users.ftl", getClass(), MediaType.TEXT_HTML));
theMap.put("xml", new AutoXMLFormat());
theMap.put(null, theMap.get("html"));
return theMap;