Interface HistoricIdentityLinkLogRestService
-
- All Known Implementing Classes:
HistoricIdentityLinkLogRestServiceImpl
@Path("/identity-link-log") @Produces("application/json") public interface HistoricIdentityLinkLogRestService- Author:
- Deivarayan Azhagappan
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description List<HistoricIdentityLinkLogDto>getHistoricIdentityLinks(javax.ws.rs.core.UriInfo uriInfo, Integer firstResult, Integer maxResults)Exposes theHistoricIdentityLinkLogQueryinterface as a REST service.CountResultDtogetHistoricIdentityLinksCount(javax.ws.rs.core.UriInfo uriInfo)
-
-
-
Field Detail
-
PATH
static final String PATH
- See Also:
- Constant Field Values
-
-
Method Detail
-
getHistoricIdentityLinks
@GET @Produces("application/json") List<HistoricIdentityLinkLogDto> getHistoricIdentityLinks(@Context javax.ws.rs.core.UriInfo uriInfo, @QueryParam("firstResult") Integer firstResult, @QueryParam("maxResults") Integer maxResults)Exposes theHistoricIdentityLinkLogQueryinterface as a REST service.- Parameters:
query-firstResult-maxResults-- Returns:
-
getHistoricIdentityLinksCount
@GET @Path("/count") @Produces("application/json") CountResultDto getHistoricIdentityLinksCount(@Context javax.ws.rs.core.UriInfo uriInfo)
-
-