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

Packages that use UserModel
ch.hsr.bieridee.models   
ch.hsr.bieridee.serializer   
ch.hsr.bieridee.utils   
 

Uses of UserModel in ch.hsr.bieridee.models
 

Methods in ch.hsr.bieridee.models that return UserModel
static UserModel UserModel.create(java.lang.String username, java.lang.String password, java.lang.String prename, java.lang.String surname, java.lang.String email)
          Creates a new user and returns a new UserModel for it.
 UserModel RecommendationModel.getUser()
           
 UserModel AbstractActionModel.getUser()
           
 

Methods in ch.hsr.bieridee.models that return types with arguments of type UserModel
static java.util.List<UserModel> UserModel.getAll()
          Gets a list of all users as UserModels.
 

Methods in ch.hsr.bieridee.models with parameters of type UserModel
static ConsumptionModel ConsumptionModel.create(BeerModel beerModel, UserModel userModel)
          Creates a new user and returns a new UserModel for it.
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.
 void RecommendationModel.setUser(UserModel user)
           
 

Constructors in ch.hsr.bieridee.models with parameters of type UserModel
RecommendationModel(double weight, double normalizedWeight, UserModel forUser, BeerModel beer)
          Creates a new RecommendationModel.
 

Uses of UserModel in ch.hsr.bieridee.serializer
 

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

Methods in ch.hsr.bieridee.serializer with parameters of type UserModel
 void UserListSerializer.serialize(UserModel[] userModels, org.codehaus.jackson.JsonGenerator jsonGenerator, org.codehaus.jackson.map.SerializerProvider serializerProvider)
           
 void UserSerializer.serialize(UserModel user, org.codehaus.jackson.JsonGenerator jsonGenerator, org.codehaus.jackson.map.SerializerProvider serializerProvider)
           
 

Uses of UserModel in ch.hsr.bieridee.utils
 

Methods in ch.hsr.bieridee.utils with parameters of type UserModel
static void DBUtil.addToRatingIndex(org.neo4j.graphdb.Node node, BeerModel beerModel, UserModel userModel)
           
 

Constructors in ch.hsr.bieridee.utils with parameters of type UserModel
Recommendator(UserModel userModel)
          Creates a new Recomendator for the given User.