Uses of Class
com.bluebell.greenhouse.planter.resolvers.request.ref.AuthenticatedUserRef
Packages that use AuthenticatedUserRef
Package
Description
Contains controllers for handling
RecurringNotifications.Contains controllers for handling
Portfolios and portfolio summary
operations.Contains controllers for handling
Users and securing api endpoints.Contains API controllers related to
Strategy and their implementation
artifacts.Contains API controllers for the
Watchlist entity.Contains the notification orchestrators.
Contains the portfolio orchestrators.
Contains the security orchestrators.
Contains the strategy orchestrators.
Contains the watchlist orchestrators.
Contains account request contexts and resolvers.
Contains request resolvers for recurring-notification domain entities.
Contains portfolio request contexts and resolvers.
Contains position request contexts and resolvers.
Contains owned reference types carried by API request contexts.
Contains authenticated-user request resolvers.
Contains transaction request contexts and resolvers.
Contains request resolvers for watchlist-domain entities.
Contains the service layer for
Users.-
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.controllers.notification
Methods in com.bluebell.greenhouse.planter.controllers.notification with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<RecurringNotificationDTO>> RecurringNotificationApiController.getRecurringNotificationsForCurrentUser(AuthenticatedUserRef userRef) Returns the current user'sRecurringNotifications.org.springframework.http.ResponseEntity<RecurringNotificationDTO> RecurringNotificationApiController.postCreateRecurringNotification(@Valid CreateUpdateRecurringNotificationDTO data, AuthenticatedUserRef userRef) Creates aRecurringNotification. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.controllers.portfolio
Methods in com.bluebell.greenhouse.planter.controllers.portfolio with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<PortfolioSummary> PortfolioSummaryApiController.getComprehensivePortfolioSummary(int lookBackDays, AuthenticatedUserRef userRef) Returns aResponseEntitycontaining aPortfolioSummary.org.springframework.http.ResponseEntity<PortfolioDTO> PortfolioApiController.postCreateNewPortfolio(@Valid CreateUpdatePortfolioDTO data, AuthenticatedUserRef userRef) Returns aPortfolio. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.controllers.security
Methods in com.bluebell.greenhouse.planter.controllers.security with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<UserDTO> UserApiController.putUpdateUser(@Valid CreateUpdateUserDTO data, AuthenticatedUserRef userRef) Updates an existingUser. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.controllers.strategy
Methods in com.bluebell.greenhouse.planter.controllers.strategy with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<StrategyDTO> StrategyApiController.putUpdateStrategyAccountAssignments(String strategyUid, @Valid UpdateStrategyAccountsDTO data, AuthenticatedUserRef userRef) Synchronizes the accounts assigned to an existingStrategy. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.controllers.watchlist
Methods in com.bluebell.greenhouse.planter.controllers.watchlist with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionorg.springframework.http.ResponseEntity<List<WatchlistDTO>> WatchlistApiController.getWatchlistsForCurrentUser(AuthenticatedUserRef userRef) org.springframework.http.ResponseEntity<WatchlistDTO> WatchlistApiController.postCreateWatchlist(@Valid CreateUpdateWatchlistDTO data, AuthenticatedUserRef userRef) Creates a newWatchlist. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.orchestrators.notification
Methods in com.bluebell.greenhouse.planter.orchestrators.notification with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionRecurringNotificationOrchestrator.createRecurringNotification(CreateUpdateRecurringNotificationDTO data, AuthenticatedUserRef userRef) Creates aRecurringNotification.RecurringNotificationOrchestrator.getRecurringNotificationsForCurrentUser(AuthenticatedUserRef userRef) Obtains everyRecurringNotificationbelonging to the current user. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.orchestrators.portfolio
Methods in com.bluebell.greenhouse.planter.orchestrators.portfolio with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionPortfolioOrchestrator.createNewPortfolio(CreateUpdatePortfolioDTO data, AuthenticatedUserRef userRef) Creates a newPortfoliofor the current user.PortfolioSummaryOrchestrator.getComprehensivePortfolioSummary(AuthenticatedUserRef userRef, int lookBackDays) Obtains a summary aggregated across every portfolio the user owns. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.orchestrators.security
Methods in com.bluebell.greenhouse.planter.orchestrators.security with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionUserOrchestrator.updateUser(AuthenticatedUserRef userRef, CreateUpdateUserDTO data) Updates the authenticatedUser. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.orchestrators.strategy
Methods in com.bluebell.greenhouse.planter.orchestrators.strategy with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionStrategyOrchestrator.updateStrategyAccountAssignments(String strategyUid, UpdateStrategyAccountsDTO data, AuthenticatedUserRef userRef) Synchronises the accounts assigned to theStrategymatching the given uid. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.orchestrators.watchlist
Methods in com.bluebell.greenhouse.planter.orchestrators.watchlist with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionWatchlistOrchestrator.createWatchlist(CreateUpdateWatchlistDTO data, AuthenticatedUserRef userRef) Creates aWatchlistfor the current user.WatchlistOrchestrator.getWatchlistsForCurrentUser(AuthenticatedUserRef userRef) Obtains everyWatchlistbelonging to the current user. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.account
Methods in com.bluebell.greenhouse.planter.resolvers.request.account that return AuthenticatedUserRefModifier and TypeMethodDescriptionAccountDeletionRequestContext.userRef()Returns the reference identifying the authenticated user.AccountPortfolioRequestContext.userRef()Returns the reference identifying the authenticated user.AccountRequestContext.userRef()Returns the value of theuserRefrecord component.Methods in com.bluebell.greenhouse.planter.resolvers.request.account with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionAccountRequestResolver.resolve(AuthenticatedUserRef userRef, String accountNumber) Resolves the requested account for an already-resolved principal.Constructors in com.bluebell.greenhouse.planter.resolvers.request.account with parameters of type AuthenticatedUserRefModifierConstructorDescriptionAccountRequestContext(AuthenticatedUserRef userRef, OwnedAccountRef accountRef) Creates an instance of aAccountRequestContextrecord class. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.notification
Methods in com.bluebell.greenhouse.planter.resolvers.request.notification that return AuthenticatedUserRefModifier and TypeMethodDescriptionRecurringNotificationRequestContext.userRef()Returns the value of theuserRefrecord component.Constructors in com.bluebell.greenhouse.planter.resolvers.request.notification with parameters of type AuthenticatedUserRefModifierConstructorDescriptionRecurringNotificationRequestContext(AuthenticatedUserRef userRef, OwnedRecurringNotificationRef recurringNotificationRef) Creates an instance of aRecurringNotificationRequestContextrecord class. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.portfolio
Methods in com.bluebell.greenhouse.planter.resolvers.request.portfolio that return AuthenticatedUserRefModifier and TypeMethodDescriptionPortfolioRequestContext.userRef()Returns the value of theuserRefrecord component.Constructors in com.bluebell.greenhouse.planter.resolvers.request.portfolio with parameters of type AuthenticatedUserRefModifierConstructorDescriptionPortfolioRequestContext(AuthenticatedUserRef userRef, OwnedPortfolioRef portfolioRef) Creates an instance of aPortfolioRequestContextrecord class. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.position
Methods in com.bluebell.greenhouse.planter.resolvers.request.position that return AuthenticatedUserRef -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.ref
Methods in com.bluebell.greenhouse.planter.resolvers.request.ref that return AuthenticatedUserRefModifier and TypeMethodDescriptionstatic AuthenticatedUserRefCreates the reference.OwnedAccountRef.userRef()OwnedPortfolioRef.userRef()Returns the authenticated user reference.OwnedRecurringNotificationRef.userRef()Returns the authenticated user reference.OwnedWatchlistItemRef.userRef()Returns the authenticated user reference.OwnedWatchlistRef.userRef()Returns the authenticated user reference.Methods in com.bluebell.greenhouse.planter.resolvers.request.ref with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionstatic OwnedAccountRefOwnedAccountRef.of(AuthenticatedUserRef userRef, String accountNumber) Creates the reference.static OwnedPortfolioRefOwnedPortfolioRef.of(AuthenticatedUserRef userRef, long portfolioNumber) Creates the reference.OwnedRecurringNotificationRef.of(AuthenticatedUserRef userRef, RecurringNotificationType notificationType) Creates the reference.static OwnedWatchlistItemRefOwnedWatchlistItemRef.of(AuthenticatedUserRef userRef, String watchlistItemUid) Creates the reference.static OwnedWatchlistRefOwnedWatchlistRef.of(AuthenticatedUserRef userRef, String watchlistUid) Creates the reference. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.security
Subclasses with type arguments of type AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.securityModifier and TypeClassDescriptionfinal classResolves authenticatedAuthenticatedUserRefcontroller arguments.Methods in com.bluebell.greenhouse.planter.resolvers.request.security that return AuthenticatedUserRefModifier and TypeMethodDescriptionprotected AuthenticatedUserRefAuthenticatedUserRefArgumentResolver.resolveContext(org.springframework.core.MethodParameter parameter, org.springframework.web.context.request.NativeWebRequest webRequest) Resolves the domain-specific request context. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.transaction
Methods in com.bluebell.greenhouse.planter.resolvers.request.transaction that return AuthenticatedUserRefModifier and TypeMethodDescriptionTransactionRequestContext.userRef()Returns the reference identifying the authenticated user. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.planter.resolvers.request.watchlist
Methods in com.bluebell.greenhouse.planter.resolvers.request.watchlist that return AuthenticatedUserRefModifier and TypeMethodDescriptionWatchlistItemRequestContext.userRef()Returns the value of theuserRefrecord component.WatchlistRequestContext.userRef()Returns the value of theuserRefrecord component.Constructors in com.bluebell.greenhouse.planter.resolvers.request.watchlist with parameters of type AuthenticatedUserRefModifierConstructorDescriptionWatchlistItemRequestContext(AuthenticatedUserRef userRef, OwnedWatchlistItemRef watchlistItemRef) Creates an instance of aWatchlistItemRequestContextrecord class.WatchlistRequestContext(AuthenticatedUserRef userRef, OwnedWatchlistRef watchlistRef) Creates an instance of aWatchlistRequestContextrecord class. -
Uses of AuthenticatedUserRef in com.bluebell.greenhouse.radicle.services.security
Methods in com.bluebell.greenhouse.radicle.services.security with parameters of type AuthenticatedUserRefModifier and TypeMethodDescriptionUserService.resolveAuthenticated(AuthenticatedUserRef ref) Resolves the authenticated user a reference identifies.