Uses of Class
kieker.webgui.common.exception.DataAccessException

Packages that use DataAccessException
kieker.webgui.common.exception This package contains the exceptions 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. 
 

Uses of DataAccessException in kieker.webgui.common.exception
 

Subclasses of DataAccessException in kieker.webgui.common.exception
 class UserAlreadyExistingException
          This exception can be thrown to show that a user with the given name already exists .
 

Uses of DataAccessException in kieker.webgui.persistence
 

Methods in kieker.webgui.persistence that throw DataAccessException
 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.
 List<User> IUserDAO.getUsers()
          Delivers a list containing the available users within the system.
 

Uses of DataAccessException in kieker.webgui.persistence.impl
 

Methods in kieker.webgui.persistence.impl that throw DataAccessException
 void DerbyUserDAOImpl.addUser(User user)
           
 void DerbyUserDAOImpl.deleteUser(User user)
           
 void DerbyUserDAOImpl.editUserWithoutPassword(User user)
           
 void DerbyUserDAOImpl.editUserWithPassword(User user)
           
 List<User> DerbyUserDAOImpl.getUsers()
           
 

Uses of DataAccessException in kieker.webgui.service
 

Methods in kieker.webgui.service that throw DataAccessException
 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.
 List<User> IUserService.getUsers()
          Delivers a list containing the available users within the system.
 

Uses of DataAccessException in kieker.webgui.service.impl
 

Methods in kieker.webgui.service.impl that throw DataAccessException
 void UserServiceImpl.addUser(User user)
           
 void UserServiceImpl.deleteUser(User user)
           
 void UserServiceImpl.editUserWithoutPassword(User user)
           
 void UserServiceImpl.editUserWithPassword(User user)
           
 List<User> UserServiceImpl.getUsers()
           
 



Copyright © 2015. All rights reserved.