login
@Path(value="/login")
@POST
@Produces(value="application/json")
@Consumes(value="application/x-www-form-urlencoded")
public UserTO login(@FormParam(value="email")
String email,
@FormParam(value="password")
String password,
@Context
HttpServletRequest request)
throws APIError,
ServiceException,
com.fasterxml.jackson.core.JsonParseException,
com.fasterxml.jackson.databind.JsonMappingException,
IOException
- Throws:
APIError
ServiceException
com.fasterxml.jackson.core.JsonParseException
com.fasterxml.jackson.databind.JsonMappingException
IOException