Interface HistoricIdentityLinkLogRestService
- All Known Implementing Classes:
HistoricIdentityLinkLogRestServiceImpl
@Path("/identity-link-log")
@Produces("application/json")
public interface HistoricIdentityLinkLogRestService
- Author:
- Deivarayan Azhagappan
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptiongetHistoricIdentityLinks
(jakarta.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults) Exposes theHistoricIdentityLinkLogQuery
interface as a REST service.getHistoricIdentityLinksCount
(jakarta.ws.rs.core.UriInfo uriInfo)
-
Field Details
-
PATH
- See Also:
-
-
Method Details
-
getHistoricIdentityLinks
@GET @Produces("application/json") List<HistoricIdentityLinkLogDto> getHistoricIdentityLinks(@Context jakarta.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults) Exposes theHistoricIdentityLinkLogQuery
interface as a REST service.- Parameters:
query
-firstResult
-maxResults
-- Returns:
-
getHistoricIdentityLinksCount
@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricIdentityLinksCount(@Context jakarta.ws.rs.core.UriInfo uriInfo)
-