Package com.bluetangstudio.searchcloud.client.model

Examples of com.bluetangstudio.searchcloud.client.model.ResultList


        Assert.assertTrue(queries.size() > 0);

        ResultListMetadata metadata = new ResultListMetadata(searchQuery, 0, 0, 0);
        List<Document> results = new ArrayList<Document>();

        return new ResultList(metadata, results);
    }
View Full Code Here


        Pagination pagination = new Pagination(start, count);

        SearchQuery searchQuery = new SearchQuery(queries, queryConstraints, pagination);

        ResultList resultList = client.search(new SearchRequest(modelId, searchQuery));

        Assert.assertNotNull(resultList);
        Assert.assertNotNull(resultList.getMetadata());
        Assert.assertNotNull(resultList.getResults());

    }
View Full Code Here

TOP

Related Classes of com.bluetangstudio.searchcloud.client.model.ResultList

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.