Uses of Class
com.mycompany.model.RelationshipType

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

Uses of RelationshipType in com.mycompany.controller
 

Methods in com.mycompany.controller that return RelationshipType
 RelationshipType ContactsController.getRelationshipType()
           
 RelationshipType[] ContactsController.getRelationshipTypes()
           
 RelationshipType[] ContactsController.getUserTypes()
           
 

Uses of RelationshipType in com.mycompany.model
 

Fields in com.mycompany.model with type parameters of type RelationshipType
static javax.persistence.metamodel.SingularAttribute<UserRelationship,RelationshipType> UserRelationship_.relationshipType
           
 

Methods in com.mycompany.model that return RelationshipType
 RelationshipType UserRelationship.getRelationshipType()
           
static RelationshipType RelationshipType.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static RelationshipType[] RelationshipType.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.mycompany.model with parameters of type RelationshipType
 void UserRelationship.setRelationshipType(RelationshipType contactType)
           
 

Uses of RelationshipType in com.mycompany.service
 

Methods in com.mycompany.service with parameters of type RelationshipType
 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.
 

Uses of RelationshipType in com.mycompany.service.impl
 

Methods in com.mycompany.service.impl with parameters of type RelationshipType
 java.util.List<User> UserServiceImpl.findUsersByType(RelationshipType type, User user)