Uses of Class
kieker.webgui.domain.User

Packages that use User
kieker.webgui.domain This package contains domain specific classes which are used through all layers of the web application. 
kieker.webgui.persistence This package contains the interfaces to access the persistence layer. 
kieker.webgui.persistence.impl This package contains the actual implementations of the persistence interfaces. 
kieker.webgui.service This package contains the interfaces to access the service layer. 
kieker.webgui.service.impl This package contains the actual implementations of the services. 
kieker.webgui.web.beans.view This package contains Spring managed beans with view scope. 
 

Uses of User in kieker.webgui.domain
 

Methods in kieker.webgui.domain that return User
 User User.copy()
          Delivers a copy of this user, but with empty password field.
 

Uses of User in kieker.webgui.persistence
 

Methods in kieker.webgui.persistence that return types with arguments of type User
 List<User> IUserDAO.getUsers()
          Delivers a list containing the available users within the system.
 

Methods in kieker.webgui.persistence with parameters of type User
 void IUserDAO.addUser(User user)
          Adds a user to the system.
 void IUserDAO.deleteUser(User user)
          Deletes a user from the system.
 void IUserDAO.editUserWithoutPassword(User user)
          Edits a given user, but does not change the password.
 void IUserDAO.editUserWithPassword(User user)
          Edits a given user and changes the password as well.
 

Uses of User in kieker.webgui.persistence.impl
 

Methods in kieker.webgui.persistence.impl that return types with arguments of type User
 List<User> DerbyUserDAOImpl.getUsers()
           
 

Methods in kieker.webgui.persistence.impl with parameters of type User
 void DerbyUserDAOImpl.addUser(User user)
           
 void DerbyUserDAOImpl.deleteUser(User user)
           
 void DerbyUserDAOImpl.editUserWithoutPassword(User user)
           
 void DerbyUserDAOImpl.editUserWithPassword(User user)
           
 

Uses of User in kieker.webgui.service
 

Methods in kieker.webgui.service that return types with arguments of type User
 List<User> IUserService.getUsers()
          Delivers a list containing the available users within the system.
 

Methods in kieker.webgui.service with parameters of type User
 void IUserService.addUser(User user)
          Adds a user to the system.
 void IUserService.deleteUser(User user)
          Deletes a user from the system.
 void IUserService.editUserWithoutPassword(User user)
          Edits a given user, but does not change the password.
 void IUserService.editUserWithPassword(User user)
          Edits a given user and changes the password as well.
 

Uses of User in kieker.webgui.service.impl
 

Methods in kieker.webgui.service.impl that return types with arguments of type User
 List<User> UserServiceImpl.getUsers()
           
 

Methods in kieker.webgui.service.impl with parameters of type User
 void UserServiceImpl.addUser(User user)
           
 void UserServiceImpl.deleteUser(User user)
           
 void UserServiceImpl.editUserWithoutPassword(User user)
           
 void UserServiceImpl.editUserWithPassword(User user)
           
 

Uses of User in kieker.webgui.web.beans.view
 

Methods in kieker.webgui.web.beans.view that return User
 User UserManagementBean.getSelectedUser()
           
 User UserManagementBean.getSelectedUserCopy()
           
 

Methods in kieker.webgui.web.beans.view that return types with arguments of type User
 List<User> UserManagementBean.getUsers()
           
 

Methods in kieker.webgui.web.beans.view with parameters of type User
 void UserManagementBean.changeUserEnableState(User user)
          This method changes the enabled state of the given user and informs about success via the growl component.
 void UserManagementBean.setSelectedUser(User selectedUser)
          Setter for the property UserManagementBean.selectedUser.
 



Copyright © 2015. All rights reserved.