From 8f5c44d4a6607e8110adb3b23cbb62f02615f768 Mon Sep 17 00:00:00 2001 From: rodicasutu Date: Thu, 2 Apr 2020 08:34:34 +0300 Subject: [PATCH] add the missing class --- .../core/search/SearchRequestBuilder.java | 96 +++++++++++++++++++ 1 file changed, 96 insertions(+) create mode 100644 rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/search/SearchRequestBuilder.java diff --git a/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/search/SearchRequestBuilder.java b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/search/SearchRequestBuilder.java new file mode 100644 index 0000000000..034977307b --- /dev/null +++ b/rm-automation/rm-automation-community-rest-api/src/main/java/org/alfresco/rest/core/search/SearchRequestBuilder.java @@ -0,0 +1,96 @@ +/* + * #%L + * Alfresco Records Management Module + * %% + * Copyright (C) 2005 - 2020 Alfresco Software Limited + * %% + * This file is part of the Alfresco software. + * - + * If the software was purchased under a paid Alfresco license, the terms of + * the paid license agreement will prevail. Otherwise, the software is + * provided under the following open source license terms: + * - + * Alfresco is free software: you can redistribute it and/or modify + * it under the terms of the GNU Lesser General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * - + * Alfresco is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU Lesser General Public License for more details. + * - + * You should have received a copy of the GNU Lesser General Public License + * along with Alfresco. If not, see . + * #L% + */ +package org.alfresco.rest.core.search; + +import java.util.List; + +import org.alfresco.rest.search.Pagination; +import org.alfresco.rest.search.RestRequestQueryModel; +import org.alfresco.rest.search.SearchRequest; + +/** + * Builder class for creating a search api request + * @author Rodica Sutu + * @since 2.6.0.2 + */ +public class SearchRequestBuilder extends SearchRequest +{ + /** + * Constructor for Search API Request + */ + public SearchRequestBuilder() + { + new SearchRequest(); + } + /** + * Set the sql statement for the SearchRequest + * + * @param query + * @return search request + */ + public SearchRequestBuilder setQueryBuilder(RestRequestQueryModel query) + { + super.setQuery(query); + return this; + } + + /** + * Set the paging statement for the SearchRequest + * + * @param paging + * @return search request + */ + public SearchRequestBuilder setPagingBuilder(Pagination paging) + { + super.setPaging(paging); + return this; + } + + /** + * Set the pagination properties + */ + public Pagination setPagination(Integer maxItems, Integer skipCount) + { + Pagination pagination = new Pagination(); + pagination.setMaxItems(maxItems); + pagination.setSkipCount(skipCount); + return pagination; + } + + /** + * Set the paging statement for the SearchRequest + * + * @param fields + * @return search request + */ + public SearchRequestBuilder setFieldsBuilder(List fields) + { + super.setFields(fields); + return this; + } + +}