@Named(value="userService")
@RequestScoped
@Path(value="/user")
@Produces(value={"text/html","application/xml","application/json"})
public class UserRestService
extends Object
implements Serializable
| Constructor and Description |
|---|
UserRestService() |
| Modifier and Type | Method and Description |
|---|---|
org.imixs.workflow.xml.XMLDataCollection |
getFavorites(javax.servlet.http.HttpServletRequest servletRequest)
Returns the users favorite workitems.
|
org.imixs.workflow.xml.XMLDataCollection |
getFavoritesJSON(javax.servlet.http.HttpServletRequest servletRequest) |
org.imixs.workflow.xml.XMLDataCollection |
getFavoritesXML(javax.servlet.http.HttpServletRequest servletRequest) |
@GET
@Path(value="/favorites")
public org.imixs.workflow.xml.XMLDataCollection getFavorites(@Context
javax.servlet.http.HttpServletRequest servletRequest)
@GET
@Path(value="/favorites.xml")
@Produces(value="text/xml")
public org.imixs.workflow.xml.XMLDataCollection getFavoritesXML(@Context
javax.servlet.http.HttpServletRequest servletRequest)
@GET
@Path(value="/favorites.json")
@Produces(value="application/json")
public org.imixs.workflow.xml.XMLDataCollection getFavoritesJSON(@Context
javax.servlet.http.HttpServletRequest servletRequest)
Copyright © 2011–2022 Imixs Software Solutions GmbH. All rights reserved.