Interface HvlAuthzProfileGroupRestService

All Known Implementing Classes:
HvlAuthzProfileGroupRestController

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

    • getByUuid

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

      @PostMapping(path="/list", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<List<HvlOAuthProfileGroupModel>> queryList(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthProfileGroupQueryModel profileGroupQueryModel)
      Query profile group list.
      Parameters:
      profileGroupQueryModel - the profile group query model
      Returns:
      the hvl response
    • queryPage

      @PostMapping(path="/page", consumes="application/json", produces="application/json") tr.com.havelsan.javarch.service.data.HvlResponse<tr.com.havelsan.javarch.data.commons.pageable.HvlPage<HvlOAuthProfileGroupModel>> queryPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthProfileGroupQueryModel profileGroupQueryModel)
      Query profile group as page.
      Parameters:
      profileGroupQueryModel - the profile 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<HvlOAuthProfileGroupClaimNodeModel>> queryClaimDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthProfileGroupClaimQueryModel profileGroupClaimQueryModel)
      Returns a page of profile group claim for assigned entity relation matching the query criteria.
      Parameters:
      profileGroupClaimQueryModel - the profile 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<HvlOAuthProfileGroupDataModel>> queryReportByAdminDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthReportQueryModel reportQueryModel)
      Returns a page of profile group report 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<HvlOAuthProfileGroupDataModel>> queryReportDataPage(@NotNull @Valid @RequestBody @NotNull @Valid HvlOAuthReportQueryModel reportQueryModel)
      Returns a page of profile group report matching the report query criteria.
      Parameters:
      reportQueryModel - the report query model
      Returns:
      the hvl response