Uses of Class
com.mycompany.model.UserRelationship

Packages that use UserRelationship
com.mycompany.controller   
com.mycompany.model   
com.mycompany.service   
com.mycompany.service.impl   
 

Uses of UserRelationship in com.mycompany.controller
 

Methods in com.mycompany.controller that return UserRelationship
 UserRelationship ContactsController.getRelationship()
           
 

Methods in com.mycompany.controller with parameters of type UserRelationship
 void ContactsController.setRelationship(UserRelationship relationship)
           
 

Uses of UserRelationship in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type UserRelationship
static javax.persistence.metamodel.SetAttribute<User,UserRelationship> User_.fromRelationships
           
static javax.persistence.metamodel.SingularAttribute<UserRelationship,User> UserRelationship_.fromUser
           
static javax.persistence.metamodel.SingularAttribute<UserRelationship,RelationshipType> UserRelationship_.relationshipType
           
static javax.persistence.metamodel.SetAttribute<User,UserRelationship> User_.toRelationships
           
static javax.persistence.metamodel.SingularAttribute<UserRelationship,User> UserRelationship_.toUser
           
 

Methods in com.mycompany.model that return types with arguments of type UserRelationship
 java.util.Set<UserRelationship> User.getFromRelationships()
           
 java.util.Set<UserRelationship> User.getToRelationships()
           
 

Method parameters in com.mycompany.model with type arguments of type UserRelationship
 void User.setFromRelationships(java.util.Set<UserRelationship> fromRelationships)
           
 void User.setToRelationships(java.util.Set<UserRelationship> toRelationships)
           
 

Uses of UserRelationship in com.mycompany.service
 

Methods in com.mycompany.service that return UserRelationship
 UserRelationship UserService.findRelationshipToUser(User user1, User user2)
          Finds a UserRelationship object representing a relationship between two User objects.
 UserRelationship UserService.saveRelationship(UserRelationship relationship)
          Saves a UserRelationship object.
 

Methods in com.mycompany.service with parameters of type UserRelationship
 UserRelationship UserService.saveRelationship(UserRelationship relationship)
          Saves a UserRelationship object.
 

Uses of UserRelationship in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl that return UserRelationship
 UserRelationship UserServiceImpl.findRelationshipToUser(User user1, User user2)
           
 UserRelationship UserServiceImpl.saveRelationship(UserRelationship relationship)
           
 

Methods in com.mycompany.service.impl with parameters of type UserRelationship
 UserRelationship UserServiceImpl.saveRelationship(UserRelationship relationship)