Uses of Class
ch.hsr.bieridee.models.RatingModel

Packages that use RatingModel
ch.hsr.bieridee.models   
ch.hsr.bieridee.serializer   
 

Uses of RatingModel in ch.hsr.bieridee.models
 

Methods in ch.hsr.bieridee.models that return RatingModel
static RatingModel RatingModel.create(int value, BeerModel beerModel, UserModel userModel)
          Creates a new user and returns a new UserModel for it.
static RatingModel RatingModel.getCurrent(BeerModel beerModel, UserModel userModel)
          Gets the active rating for the given user and the given beer.
 

Methods in ch.hsr.bieridee.models that return types with arguments of type RatingModel
static java.util.List<RatingModel> RatingModel.createModelsFromNodes(java.util.List<org.neo4j.graphdb.Node> ratingNodes)
          Creates RatingModels from ratingnodes.
 

Uses of RatingModel in ch.hsr.bieridee.serializer
 

Methods in ch.hsr.bieridee.serializer that return types with arguments of type RatingModel
 java.lang.Class<RatingModel> RatingSerializer.handledType()
           
 

Methods in ch.hsr.bieridee.serializer with parameters of type RatingModel
 void RatingSerializer.serialize(RatingModel rating, org.codehaus.jackson.JsonGenerator jsonGenerator, org.codehaus.jackson.map.SerializerProvider serializerProvider)