Interface HvlOAuthUserDetailManager

All Known Implementing Classes:
HvlOAuthUserDetailManagerImpl

@Validated public interface HvlOAuthUserDetailManager
This manager provides query methods.
  • Method Details

    • getByUuid

      HvlOAuthUserDetailModel getByUuid(@NotBlank @Size(min=36,max=36) @NotBlank @Size(min=36,max=36) String uuid)
      Gets user detail by uuid.
      Parameters:
      uuid - the uuid
      Returns:
      the user detail model
    • getByIntegrationCode

      HvlOAuthUserDetailModel getByIntegrationCode(@NotBlank @Size(max=20) @NotBlank @Size(max=20) String integrationCode)
      Gets user detail by integration code.
      Parameters:
      integrationCode - the integration code
      Returns:
      user detail model
    • getEmailByUserId

      String getEmailByUserId(@NotNull @NotNull Long userId)
      Gets email by user id.
      Parameters:
      userId - the user id
      Returns:
      the email
    • queryList

      List<HvlOAuthUserDetailModel> queryList(@NotNull @Valid @NotNull @Valid HvlOAuthUserDetailQueryModel userDetailQueryModel)
      Returns a list of user detail matching the query criteria.
      Parameters:
      userDetailQueryModel - the user detail query model
      Returns:
      the list of user detail model
    • queryPage

      tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlOAuthUserDetailModel> queryPage(@NotNull @Valid @NotNull @Valid HvlOAuthUserDetailQueryModel userDetailQueryModel)
      Returns a page of user detail matching the query criteria.
      Parameters:
      userDetailQueryModel - the user detail query model
      Returns:
      the page of user detail model
    • isExistIntegrationCode

      boolean isExistIntegrationCode(@NotBlank @Size(min=36,max=36) @NotBlank @Size(min=36,max=36) String uuid)
      Is exist integration code boolean.
      Parameters:
      uuid - the uuid
      Returns:
      the boolean
    • isExistEmail

      boolean isExistEmail(@NotBlank @Size(max=100) @NotBlank @Size(max=100) String email)
      Is exist email boolean.
      Parameters:
      email - the email
      Returns:
      the boolean
    • getAllUserEmailList

      List<String> getAllUserEmailList()
      Gets all user email list.
      Returns:
      the all user email list