|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use UserRelationship | |
---|---|
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. |
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)
Finds a UserRelationship object representing a relationship
between two User objects. |
UserRelationship |
UserServiceImpl.saveRelationship(UserRelationship relationship)
Saves a UserRelationship object. |
Methods in com.mycompany.service.impl with parameters of type UserRelationship | |
---|---|
UserRelationship |
UserServiceImpl.saveRelationship(UserRelationship relationship)
Saves a UserRelationship object. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |