Class ConfirmationCodeProxyApiController
- java.lang.Object
-
- ru.foodtechlab.lib.auth.integration.proxy.api.confirmationCode.v1.controllers.ConfirmationCodeProxyApiController
-
- All Implemented Interfaces:
ru.foodtechlab.lib.auth.service.facade.confirmationCode.endpoints.FindConfirmationCodeByIdEndpoint,ru.foodtechlab.lib.auth.service.facade.confirmationCode.endpoints.FindConfirmationCodesEndpoint,ru.foodtechlab.lib.auth.service.facade.confirmationCode.resources.ConfirmationCodeResource
public class ConfirmationCodeProxyApiController extends Object implements ru.foodtechlab.lib.auth.service.facade.confirmationCode.resources.ConfirmationCodeResource
-
-
Constructor Summary
Constructors Constructor Description ConfirmationCodeProxyApiController()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description com.rcore.rest.api.commons.response.SuccessApiResponse<com.rcore.domain.commons.port.dto.SearchResult<ru.foodtechlab.lib.auth.service.facade.confirmationCode.dto.responses.ConfirmationCodeResponse>>find(ru.foodtechlab.lib.auth.service.facade.confirmationCode.dto.requests.SearchConfirmationCodeWithFiltersRequest request)com.rcore.rest.api.commons.response.SuccessApiResponse<ru.foodtechlab.lib.auth.service.facade.confirmationCode.dto.responses.ConfirmationCodeResponse>findById(String id)
-
-
-
Method Detail
-
findById
@GetMapping(value="/api/v1/confirmation-codes/{id}", produces="application/json") public com.rcore.rest.api.commons.response.SuccessApiResponse<ru.foodtechlab.lib.auth.service.facade.confirmationCode.dto.responses.ConfirmationCodeResponse> findById(@PathVariable String id)- Specified by:
findByIdin interfaceru.foodtechlab.lib.auth.service.facade.confirmationCode.endpoints.FindConfirmationCodeByIdEndpoint
-
find
@GetMapping(value="/api/v1/confirmation-codes", produces="application/json") public com.rcore.rest.api.commons.response.SuccessApiResponse<com.rcore.domain.commons.port.dto.SearchResult<ru.foodtechlab.lib.auth.service.facade.confirmationCode.dto.responses.ConfirmationCodeResponse>> find(@ModelAttribute ru.foodtechlab.lib.auth.service.facade.confirmationCode.dto.requests.SearchConfirmationCodeWithFiltersRequest request)- Specified by:
findin interfaceru.foodtechlab.lib.auth.service.facade.confirmationCode.endpoints.FindConfirmationCodesEndpoint
-
-