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

Packages that use Mood
com.fabula.timeline.service   
com.fabula.timeline.service.rest.impl   
 

Uses of Mood in com.fabula.timeline.service
 

Methods in com.fabula.timeline.service that return Mood
static Mood Helpers.getAverageMood(java.util.List<Event> moodEvents)
          This method calculates the average of a list of moods.
 

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

Methods in com.fabula.timeline.service.rest.impl that return Mood
 Mood TimelineResource.getAverageMoodByID(java.lang.String experienceid)
          GET
Gets the average mood of an experience by ID
URL: /mood/id/{experienceid}/
Produces a JSON String with the average mood including valence and arousal.
 Mood TimelineResource.getAverageMoodByName(java.lang.String title)
          GET
Gets the average mood of an experience by title
Note: Not as accurate as ID, and is case sensitive.
 

Methods in com.fabula.timeline.service.rest.impl with parameters of type Mood
 void TimelineResource.putMood(Mood mood, java.lang.String username, java.lang.String id)
          PUT
Inserts a mood to an experience
Uses experience id to identify experience
URL: /mood/id/{id}/{username}/{moodX}/{moodY}
Consumes a Mood as JSON or XML.