A C G I P R T

G

GetAllExperiences() - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets all experiences in server
URL: /experiences/
Gets all the experiences stored.
getAverageMoodByID(String) - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets the average mood of an experience by ID
URL: /mood/id/{experienceid}/
Produces a string with the average mood as integer.
getAverageMoodByName(String) - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets the average mood of an experience by title
Note: Not as accurate as ID, and is case sensitive
URL: /mood/title/{title}/
getEvents() - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Get events as String (Mainly for testing purposes)
URL: /events/
Produces toString of all events as String
GetExperiences(String) - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets all experiences of a user
URL: /experiences/{username}
Takes username of the user to get experiences Produces the all experiences shared with the user as JSON or XML
getGroup(String) - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets the group with the id sent as parameter
URL: /group/{groupid}
Produces JSON or XML with group information.
getGroups() - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets all the groups
URL: /groups/
Produces JSON or XML with list of all groups
getGroupsOfUser(String) - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets the groups the user with the username given as parameter
URL: /groups/{username}
Produces JSON or XML with list of groups the user is member of.
getUser(String) - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets the user with the username sent as parameter
URL: /user/{username}
Produces JSON or XML with user information.
getUsers() - Method in class com.fabula.timeline.service.rest.impl.TimelineResource
GET
Gets all the users
URL: /users/ Produces JSON or XML with all users.

A C G I P R T