Uses of Class
com.mycompany.model.User

Packages that use User
com.mycompany.controller Contains JSF managed bean controller classes for the application. 
com.mycompany.model Contains JPA domain model classes and generated JPA Metamodel classes. 
com.mycompany.service Contains interfaces for all services in the application. 
com.mycompany.service.impl Contains CDI-managed service classes implemented as EJB3 stateless session beans. 
com.mycompany.util Contains utility classes for the application. 
 

Uses of User in com.mycompany.controller
 

Methods in com.mycompany.controller that return User
 User UserController.findUser(java.lang.String username, java.lang.String password)
           
 User UserController.getUser()
          Returns the currently logged in user.
 User SignupController.getUser()
           
 

Methods in com.mycompany.controller that return types with arguments of type User
 java.util.List<User> ContactsController.findUsersByName(java.lang.String suggest)
           
 java.util.List<User> ContactsController.getColleagues()
           
 java.util.List<User> ContactsController.getFamily()
           
 java.util.List<User> ContactsController.getFriends()
           
 

Methods in com.mycompany.controller with parameters of type User
 boolean UserController.isUserPresent(User user)
           
 void SignupController.setUser(User user)
           
 

Uses of User in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type User
static javax.persistence.metamodel.SingularAttribute<User,java.lang.Boolean> User_.acceptedTerms
           
static javax.persistence.metamodel.SingularAttribute<Idea,User> Idea_.author
           
static javax.persistence.metamodel.SingularAttribute<User,java.util.Date> User_.birthdate
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.Integer> User_.clickCount
           
static javax.persistence.metamodel.SingularAttribute<User,Country> User_.country
           
static javax.persistence.metamodel.SingularAttribute<Event,User> Event_.createdBy
           
static javax.persistence.metamodel.SingularAttribute<Content,User> Content_.createdBy
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.String> User_.emailAddress
           
static javax.persistence.metamodel.SetAttribute<User,EventAttendance> User_.eventsAttended
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.String> User_.firstName
           
static javax.persistence.metamodel.SetAttribute<User,UserRelationship> User_.fromRelationships
           
static javax.persistence.metamodel.SingularAttribute<UserRelationship,User> UserRelationship_.fromUser
           
static javax.persistence.metamodel.SingularAttribute<User,Gender> User_.gender
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.Integer> User_.hashCode
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.String> User_.lastName
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.String> User_.password
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.String> User_.phoneNumber
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.String> User_.theme
           
static javax.persistence.metamodel.SetAttribute<User,UserRelationship> User_.toRelationships
           
static javax.persistence.metamodel.SingularAttribute<UserRelationship,User> UserRelationship_.toUser
           
static javax.persistence.metamodel.SingularAttribute<EventAttendance,User> EventAttendance_.user
           
static javax.persistence.metamodel.SingularAttribute<User,java.lang.String> User_.username
           
 

Methods in com.mycompany.model that return User
 User Idea.getAuthor()
           
 User Event.getCreatedBy()
           
 User Content.getCreatedBy()
           
 User UserRelationship.getFromUser()
           
 User UserRelationship.getToUser()
           
 User EventAttendance.getUser()
           
 

Methods in com.mycompany.model with parameters of type User
 void Idea.setAuthor(User author)
           
 void Event.setCreatedBy(User createdBy)
           
 void Content.setCreatedBy(User createdBy)
           
 void UserRelationship.setFromUser(User firstUser)
           
 void UserRelationship.setToUser(User secondUser)
           
 void EventAttendance.setUser(User user)
           
 

Uses of User in com.mycompany.service
 

Methods in com.mycompany.service that return User
 User UserService.findUser(java.lang.String username, java.lang.String password)
          Finds a User with the given username and password.
 User UserService.findUserById(java.lang.Integer id)
          Finds a User by ID.
 User UserService.findUserByUsername(java.lang.String username)
          Finds a User by username.
 User UserService.saveUser(User user)
          Saves a User object.
 

Methods in com.mycompany.service that return types with arguments of type User
 java.util.List<User> UserService.findUsers()
          Finds a List of all User objects.
 java.util.List<User> UserService.findUsersByName(java.lang.String suggest)
          Finds a List of User objects that have a first name or last name that partially matches the suggestion string.
 java.util.List<User> UserService.findUsersByType(RelationshipType type, User user)
          Finds a List of User objects that are related to the User according to the specified RelationshipType.
 

Methods in com.mycompany.service with parameters of type User
 java.util.List<EventAttendance> EventService.findAllEventsAttendanceByUser(User user)
          Finds all EventAttendance objects for a particular User.
 EventAttendance EventService.findEventAttendance(Event event, User user)
          Finds the EventAttendance object for a particular Event and User.
 UserRelationship UserService.findRelationshipToUser(User user1, User user2)
          Finds a UserRelationship object representing a relationship between two User objects.
 java.util.List<Event> EventService.findUserEvents(java.util.Date start, java.util.Date end, User user)
          Finds a List of Event objects between a start and end date created by a particular User.
 java.util.List<User> UserService.findUsersByType(RelationshipType type, User user)
          Finds a List of User objects that are related to the User according to the specified RelationshipType.
 User UserService.saveUser(User user)
          Saves a User object.
 

Uses of User in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return User
 User UserServiceImpl.findUser(java.lang.String username, java.lang.String password)
          Finds a User with the given username and password.
 User UserServiceImpl.findUserById(java.lang.Integer id)
          Finds a User by ID.
 User UserServiceImpl.findUserByUsername(java.lang.String username)
          Finds a User by username.
 User UserServiceImpl.saveUser(User user)
          Saves a User object.
 

Methods in com.mycompany.service.impl that return types with arguments of type User
 java.util.List<User> UserServiceImpl.findUsers()
          Finds a List of all User objects.
 java.util.List<User> UserServiceImpl.findUsersByName(java.lang.String suggest)
          Finds a List of User objects that have a first name or last name that partially matches the suggestion string.
 java.util.List<User> UserServiceImpl.findUsersByType(RelationshipType type, User user)
          Finds a List of User objects that are related to the User according to the specified RelationshipType.
 

Methods in com.mycompany.service.impl with parameters of type User
 java.util.List<EventAttendance> EventServiceImpl.findAllEventsAttendanceByUser(User user)
          Finds all EventAttendance objects for a particular User.
 EventAttendance EventServiceImpl.findEventAttendance(Event event, User user)
          Finds the EventAttendance object for a particular Event and User.
 UserRelationship UserServiceImpl.findRelationshipToUser(User user1, User user2)
          Finds a UserRelationship object representing a relationship between two User objects.
 java.util.List<Event> EventServiceImpl.findUserEvents(java.util.Date start, java.util.Date end, User user)
          Finds a List of Event objects between a start and end date created by a particular User.
 java.util.List<User> UserServiceImpl.findUsersByType(RelationshipType type, User user)
          Finds a List of User objects that are related to the User according to the specified RelationshipType.
 User UserServiceImpl.saveUser(User user)
          Saves a User object.
 

Uses of User in com.mycompany.util
 

Methods in com.mycompany.util that return User
 User UserSession.getUser()
          Returns the current User.
 

Methods in com.mycompany.util with parameters of type User
 void UserSession.setUser(User user)
          Sets the User.