Interface HvlAuthzRoleGroupRestService

All Known Implementing Classes:
HvlAuthzRoleGroupRestController

@Validated @HvlPublicFeignRestService @FeignClient(name="roleGroupPublicRestService", path="${hvl.oauth.authz.service.role-group.path:/role-groups}", url="${hvl.oauth.authz.service.role-group.url:${hvl.oauth.authz.service.url}}") public interface HvlAuthzRoleGroupRestService
A restful service which provides specific methods for role group.
  • Method Details

    • getByUuid

      @GetMapping(path="/by-uuid/{uuid}", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<HvlOAuthRoleGroupModel> getByUuid(@NotBlank @Size(min=36,max=36) @PathVariable("uuid") @NotBlank @Size(min=36,max=36) String uuid)
      Gets role group by uuid.
      Parameters:
      uuid - the uuid
      Returns:
      the hvl response
    • queryDataList

      @PostMapping(path="/data/list", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<List<HvlOAuthRoleGroupDataModel>> queryDataList(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthRoleGroupQueryModel roleGroupQueryModel)
      Returns a list of role group matching the query criteria.
      Parameters:
      roleGroupQueryModel - the role group query model
      Returns:
      the hvl response
    • queryDataPage

      @PostMapping(path="/data/page", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlOAuthRoleGroupDataModel>> queryDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthRoleGroupQueryModel roleGroupQueryModel)
      Returns a page of role group matching the query criteria.
      Parameters:
      roleGroupQueryModel - the role group query model
      Returns:
      the hvl response
    • queryClaimDataPage

      @PostMapping(path="/data/claim/page", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlOAuthRoleGroupClaimDataModel>> queryClaimDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthRoleGroupClaimQueryModel roleGroupClaimQueryModel)
      Returns a page of role group claim for assigned entity relation matching the query criteria.
      Parameters:
      roleGroupClaimQueryModel - the role group claim query model
      Returns:
      the hvl response
    • queryReportByAdminDataPage

      @PostMapping(path="/admin/data/report/page", consumes="application/json", produces="application/json") @Validated(PredicatingOperation.class) tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlOAuthRoleGroupDataModel>> queryReportByAdminDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthReportQueryModel reportQueryModel)
      Returns a page of role group matching the report query criteria by admin.
      Parameters:
      reportQueryModel - the report query model
      Returns:
      the hvl response
    • queryReportDataPage

      @PostMapping(path="/data/report/page", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlOAuthRoleGroupDataModel>> queryReportDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthReportQueryModel reportQueryModel)
      Returns a page of role group matching the report query criteria.
      Parameters:
      reportQueryModel - the report query model
      Returns:
      the hvl response