Uses of Class
com.fabula.timeline.service.model.User

Packages that use User
com.fabula.timeline.service.model   
com.fabula.timeline.service.rest.impl   
 

Uses of User in com.fabula.timeline.service.model
 

Methods in com.fabula.timeline.service.model that return User
 User Group.getMember(int index)
           
 

Methods in com.fabula.timeline.service.model that return types with arguments of type User
 java.util.List<User> Group.getMembers()
           
 java.util.List<User> Users.getUsers()
           
 

Methods in com.fabula.timeline.service.model with parameters of type User
 void Group.addMember(User user)
           
 boolean Group.hasMember(User user)
           
 boolean Experience.hasMember(User user)
           
 void Group.removeMember(User user)
           
 

Method parameters in com.fabula.timeline.service.model with type arguments of type User
 void Group.setMembers(java.util.ArrayList<User> members)
           
 void Users.setUsers(java.util.List<User> users)
           
 

Constructor parameters in com.fabula.timeline.service.model with type arguments of type User
Group(java.lang.String name, java.util.List<User> members)
           
Users(java.util.List<User> users)
           
 

Uses of User in com.fabula.timeline.service.rest.impl
 

Methods in com.fabula.timeline.service.rest.impl that return User
 User TimelineResource.getUser(java.lang.String username)
          GET
Gets the user with the username sent as parameter
URL: /user/{username}
Produces JSON or XML with user information.
 

Methods in com.fabula.timeline.service.rest.impl with parameters of type User
 void TimelineResource.putUser(User user)
          PUT
Registers a user
URL: /user/
Consumes a JSON or XML with the user information.