/**
* Search for contributions which match the given filter criteria. Null or empty parameters are ignored.
*
* @param id The movie ID
* @param field The movie's field
* @param status The contribution's status
* @param fromDate Min date of the contribution
* @param toDate Max date of the contribution
* @param page The page to get
* @return All the contributions matching the criteria
* @throws ResourceNotFoundException if no movie found
*/
Page<ContributionSearchResult> findContributions(
@Nullable @Min(1) final Long id,
@Nullable final MovieField field,
@Nullable final DataStatus status,
@Nullable final Date fromDate,
@Nullable final Date toDate,
@NotNull final Pageable page
) throws ResourceNotFoundException;
MovieContributionSearchService.java 文件源码
java
阅读 15
收藏 0
点赞 0
评论 0
项目:REST-Web-Services
作者:
评论列表
文章目录