Uses of Class
entity.Employee
Packages that use Employee
Package
Description
Entity classes representing core business objects in the banking system.
Data access layer providing Interface for multiple storage methods and Implementations.
-
Uses of Employee in entity
-
Uses of Employee in storage
Modifier and TypeMethodDescriptionabstract Employee
AbstractDataStorage.getEmployee
(int employeeId) Retrieves an employee by ID.CollectionStorage.getEmployee
(int employeeId) Retrieves an employee by ID.DatabaseStorage.getEmployee
(int employeeId) Retrieves an employee by ID.DataStorage.getEmployee
(int employeeId) Retrieves an employee by ID.MongoDBStorage.getEmployee
(int employeeId) Retrieves an employee by ID.abstract Employee
AbstractDataStorage.getEmployeeByEmail
(String email) Retrieves an employee by email address.CollectionStorage.getEmployeeByEmail
(String email) Retrieves an employee by email address.DatabaseStorage.getEmployeeByEmail
(String email) Retrieves an employee by email address.DataStorage.getEmployeeByEmail
(String email) Retrieves an employee by email address.MongoDBStorage.getEmployeeByEmail
(String email) Retrieves an employee by email address.Modifier and TypeMethodDescriptionabstract int
AbstractDataStorage.saveEmployee
(Employee employee) Saves a new employee to storage.int
CollectionStorage.saveEmployee
(Employee employee) Saves a new employee to storage.int
DatabaseStorage.saveEmployee
(Employee employee) Saves a new employee to storage.int
DataStorage.saveEmployee
(Employee employee) Saves a new employee to storage.int
MongoDBStorage.saveEmployee
(Employee employee) Saves a new employee to storage.abstract int
AbstractDataStorage.saveEmployeeWithPassword
(Employee employee, String salt) Saves a new employee with password for login capability.int
CollectionStorage.saveEmployeeWithPassword
(Employee employee, String salt) Saves a new employee with password for login capability.int
DatabaseStorage.saveEmployeeWithPassword
(Employee employee, String salt) Saves a new employee with password for login capability.int
DataStorage.saveEmployeeWithPassword
(Employee employee, String salt) Saves a new employee with password for login capability.int
MongoDBStorage.saveEmployeeWithPassword
(Employee employee, String salt) Saves a new employee with password for login capability.