All Known Implementing Classes:
HvlAuthzTagServiceImpl

@Validated public interface HvlAuthzTagService
This service provides operational and retrieve methods.
  • Method Details

    • save

      HvlOAuthTagModel save(@NotNull @Valid @NotNull @Valid HvlOAuthTagModel tagModel)
      Save tag.
      Parameters:
      tagModel - the tag model
      Returns:
      the tag model
    • update

      @Validated(tr.com.havelsan.javarch.data.commons.validation.HvlConstraintGroups.ModifyingOperation.class) HvlOAuthTagModel update(@NotNull @Valid @NotNull @Valid HvlOAuthTagModel tagModel)
      Update tag.
      Parameters:
      tagModel - the tag model
      Returns:
      the tag model
    • deleteByUuid

      void deleteByUuid(@NotBlank @Size(min=36,max=36) @NotBlank @Size(min=36,max=36) String uuid)
      Delete tag by uuid.
      Parameters:
      uuid - the uuid
    • getByUuid

      HvlOAuthTagModel getByUuid(@NotBlank @Size(min=36,max=36) @NotBlank @Size(min=36,max=36) String uuid)
      Gets tag data according to uuid parameter.
      Parameters:
      uuid - the uuid
      Returns:
      the tag model
    • queryList

      List<HvlOAuthTagModel> queryList(@NotNull @Valid @NotNull @Valid HvlOAuthTagQueryModel tagQueryModel)
      Returns a list of tag matching the query criteria.
      Parameters:
      tagQueryModel - the tag query model
      Returns:
      the list of tag model
    • queryPage

      tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlOAuthTagModel> queryPage(@NotNull @Valid @NotNull @Valid HvlOAuthTagQueryModel tagQueryModel)
      Returns a page of tag matching the query criteria.
      Parameters:
      tagQueryModel - the tag query model
      Returns:
      the page of tag model