Uses of Class
com.ticketapplication.domain.Role

Packages that use Role
com.ticketapplication.controller   
com.ticketapplication.dao   
com.ticketapplication.domain   
 

Uses of Role in com.ticketapplication.controller
 

Fields in com.ticketapplication.controller with type parameters of type Role
private  java.util.List<Role> TicketApplicationController.allRoles
           
 

Methods in com.ticketapplication.controller that return types with arguments of type Role
 java.util.List<Role> TicketApplicationController.getAllRoles()
           
 

Uses of Role in com.ticketapplication.dao
 

Methods in com.ticketapplication.dao that return types with arguments of type Role
 java.util.List<Role> UserDAO.readAllRoles()
           
 

Uses of Role in com.ticketapplication.domain
 

Fields in com.ticketapplication.domain with type parameters of type Role
private  java.util.List<Role> User.roles
           
 

Methods in com.ticketapplication.domain that return types with arguments of type Role
 java.util.List<Role> User.getRoles()
           
 

Method parameters in com.ticketapplication.domain with type arguments of type Role
 void User.setRoles(java.util.List<Role> roles)