Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/BrodyGaudel/bank
/ functions
Functions
403 in github.com/BrodyGaudel/bank
⨍
Functions
403
◇
Types & classes
164
Method
initialize
(Password constraintAnnotation)
authentication-service/src/main/java/org/mounanga/authenticationservice/util/validation/PasswordValidator.java:15
Method
isValid
(LocalDate localDate, ConstraintValidatorContext constraintValidatorContext)
customer-service/src/main/java/org/mounanga/customerservice/util/validation/AgeValidator.java:19
Method
isValid
(String password, ConstraintValidatorContext context)
authentication-service/src/main/java/org/mounanga/authenticationservice/util/validation/PasswordValidator.java:20
Method
loadUserByUsername
(String username)
authentication-service/src/main/java/org/mounanga/authenticationservice/security/UserDetailsServiceImpl.java:28
Method
main
(String[] args)
notification-service/src/main/java/org/mounanga/notificationservice/NotificationServiceApplication.java:11
Method
main
(String[] args)
customer-service/src/main/java/org/mounanga/customerservice/CustomerServiceApplication.java:12
Method
main
(String[] args)
account-service/src/main/java/org/mounanga/accountservice/AccountServiceApplication.java:14
Method
main
(String[] args)
gateway-service/src/main/java/org/mounanga/gatewayservice/GatewayServiceApplication.java:13
Method
main
(String[] args)
discovery-service/src/main/java/org/mounanga/discoveryservice/DiscoveryServiceApplication.java:12
Method
main
(String[] args)
authentication-service/src/main/java/org/mounanga/authenticationservice/AuthenticationServiceApplication.java:29
Method
on
(@NotNull AccountCreatedEvent event)
account-service/src/main/java/org/mounanga/accountservice/commands/aggregate/AccountAggregate.java:52
Method
on
(@NotNull AccountCreatedEvent event, @NotNull AccountEmailCustomerIdRepository repository)
account-service/src/main/java/org/mounanga/accountservice/commands/util/validation/AccountEventHandler.java:15
Method
removeRoleFromUser
(@NotNull UserRoleRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/UserServiceImpl.java:93
Method
removeRoleFromUser
(@RequestBody UserRoleRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/web/UserRestController.java:59
Method
removeRoleFromUserShouldRemoveRoleWhenValidInput
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/UserServiceImplTest.java:194
Method
requestCodeToResetPassword
(String email)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImpl.java:34
Method
requestCodeToResetPassword
(@PathVariable String email)
authentication-service/src/main/java/org/mounanga/authenticationservice/web/PasswordRestController.java:17
Method
resetPassword
(@NotNull ChangePasswordRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImpl.java:59
Method
resetPassword
(@RequestBody ChangePasswordRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/web/PasswordRestController.java:22
Method
search
(@Param("kw") String keyword, Pageable pageable)
authentication-service/src/main/java/org/mounanga/authenticationservice/repository/UserRepository.java:16
Method
searchCustomers
(String keyword, int page, int size)
customer-service/src/main/java/org/mounanga/customerservice/service/implementation/CustomerServiceImpl.java:61
Method
searchCustomers
(@RequestParam(defaultValue = "") String keyword, @Reque
customer-service/src/main/java/org/mounanga/customerservice/web/CustomerRestController.java:35
Method
searchRoles
(String query, int page, int size)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/RoleServiceImpl.java:89
Method
searchRoles
(@RequestParam(defaultValue = " ") String query, @RequestParam(defaultValue = "0") int page, @RequestParam(def
authentication-service/src/main/java/org/mounanga/authenticationservice/web/RoleRestController.java:56
Method
searchRolesShouldReturnPagedRolesWhenQueryMatches
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/RoleServiceImplTest.java:208
Method
searchUsers
(String query, int page, int size)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/UserServiceImpl.java:145
Method
searchUsers
(@RequestParam(defaultValue = " ") String query, @Requ
authentication-service/src/main/java/org/mounanga/authenticationservice/web/UserRestController.java:84
Method
searchUsersShouldReturnEmptyResultWhenNoUsersMatchQuery
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/UserServiceImplTest.java:334
Method
searchUsersShouldReturnPagedUsersWhenQueryMatches
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/UserServiceImplTest.java:317
Method
securityFilterChain
(HttpSecurity http)
authentication-service/src/main/java/org/mounanga/authenticationservice/security/SecurityConfiguration.java:28
Method
send
(NotificationRequestDTO dto)
notification-service/src/main/java/org/mounanga/notificationservice/service/implementation/NotificationServiceImpl.java:40
Method
send
(@RequestBody @Valid NotificationRequestDTO dto)
notification-service/src/main/java/org/mounanga/notificationservice/web/NotificationRestController.java:21
Method
send
(String to, String subject, String body)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/NotificationService.java:20
Method
sendAccountActivationNotification
(String email, LocalDateTime dateTime)
account-service/src/main/java/org/mounanga/accountservice/queries/util/notification/NotificationServiceImpl.java:46
Method
sendAccountCreditedNotification
(String email, BigDecimal amountCredited, BigDecimal balance, LocalDateTime dateTime)
account-service/src/main/java/org/mounanga/accountservice/queries/util/notification/NotificationServiceImpl.java:62
Method
sendAccountDebitedNotification
(String email, BigDecimal amountDebited, BigDecimal balance, LocalDateTime dateTime)
account-service/src/main/java/org/mounanga/accountservice/queries/util/notification/NotificationServiceImpl.java:70
Method
sendAccountDeletedNotification
(String accountId, String email, LocalDateTime dateTime)
account-service/src/main/java/org/mounanga/accountservice/queries/util/notification/NotificationServiceImpl.java:38
Method
sendAccountSuspensionNotification
(String email, LocalDateTime dateTime)
account-service/src/main/java/org/mounanga/accountservice/queries/util/notification/NotificationServiceImpl.java:54
Method
sendNotification
(@RequestBody @Valid NotificationRequestDTO notification)
account-service/src/main/java/org/mounanga/accountservice/queries/web/NotificationRestClient.java:12
Method
sentAccountCreationNotification
(String accountId, String email, LocalDateTime dateTime)
account-service/src/main/java/org/mounanga/accountservice/queries/util/notification/NotificationServiceImpl.java:30
Method
setUp
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:40
Method
setUp
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:25
Method
setUp
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:46
Method
setUp
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountEventHandlerServiceTest.java:43
Method
setUp
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/UserServiceImplTest.java:50
Method
setUp
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/RoleServiceImplTest.java:35
Method
setUp
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImplTest.java:42
Method
testActivateAccountCommand
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:66
Method
testCreateAccountCommand
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:32
Method
testCreateCustomer
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:140
Method
testCreateCustomerCinAlreadyExists
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:177
Method
testCreateCustomerEmailAlreadyExists
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:192
Method
testCreateUserFieldAlreadyExists
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/UserServiceImplTest.java:85
Method
testCreateUserSuccess
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/UserServiceImplTest.java:66
Method
testCreditAccountCommand
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:121
Method
testDebitAccountCommandAccountNotActivated
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:189
Method
testDebitAccountCommandInsufficientBalance
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:173
Method
testDebitAccountCommandSuccess
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:149
Method
testGetAllCustomers
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:89
Method
testGetCustomerByCin
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:67
Method
testGetCustomerByCinNotFound
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:81
Method
testGetCustomerById
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:45
Method
testGetCustomerByIdNotFound
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:59
Method
testHandleAccountActivatedEvent
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountEventHandlerServiceTest.java:78
Method
testHandleAccountCreatedEvent
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountEventHandlerServiceTest.java:56
Method
testHandleAccountCreditedEvent
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountEventHandlerServiceTest.java:129
Method
testHandleAccountDebitedEvent
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountEventHandlerServiceTest.java:171
Method
testHandleAccountDeletedEvents
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountEventHandlerServiceTest.java:116
Method
testHandleAccountSuspendedEvent
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountEventHandlerServiceTest.java:97
Method
testHandleGetAccountByCustomerIdQueryFound
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:91
Method
testHandleGetAccountByCustomerIdQueryNotFound
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:108
Method
testHandleGetAccountByIdQueryFound
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:58
Method
testHandleGetAccountByIdQueryNotFound
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:75
Method
testHandleGetOperationByAccountIdQueryEmpty
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:176
Method
testHandleGetOperationByAccountIdQueryFound
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:157
Method
testHandleGetOperationByIdQueryFound
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:124
Method
testHandleGetOperationByIdQueryNotFound
()
account-service/src/test/java/org/mounanga/accountservice/queries/service/AccountQueryHandlerServiceTest.java:141
Method
testRequestCodeToResetPasswordExistingVerificationNotExpired
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImplTest.java:75
Method
testRequestCodeToResetPasswordSuccess
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImplTest.java:47
Method
testResetPasswordCodeExpired
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImplTest.java:135
Method
testResetPasswordSuccess
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImplTest.java:102
Method
testResetPasswordVerificationCodeExpired
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/PasswordServiceImplTest.java:160
Method
testSearchCustomers
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:112
Method
testSuspendAccountCommand
()
account-service/src/test/java/org/mounanga/accountservice/commands/aggregate/AccountAggregateTest.java:96
Method
testUpdateCustomer
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:207
Method
testUpdateCustomerCinAlreadyExists
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:249
Method
testUpdateCustomerEmailAlreadyExists
()
customer-service/src/test/java/org/mounanga/customerservice/service/implementation/CustomerServiceImplTest.java:280
Method
transfer
(@RequestBody @Valid TransferRequestDTO dto)
account-service/src/main/java/org/mounanga/accountservice/commands/web/AccountCommandRestController.java:77
Method
update
(@RequestBody @Valid UpdateStatusRequestDTO dto)
account-service/src/main/java/org/mounanga/accountservice/commands/web/AccountCommandRestController.java:52
Method
updateCustomer
(String id, @NotNull CustomerRequestDTO dto)
customer-service/src/main/java/org/mounanga/customerservice/service/implementation/CustomerServiceImpl.java:82
Method
updateCustomer
(@PathVariable String id, @RequestBody CustomerRequestDTO dto)
customer-service/src/main/java/org/mounanga/customerservice/web/CustomerRestController.java:48
Method
updatePassword
(String username, @NotNull UpdatePasswordRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/UserServiceImpl.java:63
Method
updatePassword
(@RequestBody UpdatePasswordRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/web/UserRestController.java:32
Method
updateRole
(Long id, @NotNull RoleRequestDTO roleRequestDTO)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/RoleServiceImpl.java:43
Method
updateRole
(@PathVariable Long id, @RequestBody RoleRequestDTO roleRequestDTO)
authentication-service/src/main/java/org/mounanga/authenticationservice/web/RoleRestController.java:26
Method
updateRoleShouldThrowExceptionWhenRoleWithNewNameAlreadyExists
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/RoleServiceImplTest.java:97
Method
updateRoleShouldUpdateRoleWhenRoleExists
()
authentication-service/src/test/java/org/mounanga/authenticationservice/service/implementation/RoleServiceImplTest.java:74
Method
updateStatus
(@PathVariable String id)
authentication-service/src/main/java/org/mounanga/authenticationservice/web/UserRestController.java:39
Method
updateUser
(String id, UserRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/service/implementation/UserServiceImpl.java:51
Method
updateUser
(@PathVariable String id, @RequestBody UserRequestDTO dto)
authentication-service/src/main/java/org/mounanga/authenticationservice/web/UserRestController.java:26
← previous
next →
301–400 of 403, ranked by callers