Package com.bluetangstudio.searchcloud.client.model

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


        RestSearchCloudClient client = new RestSearchCloudClient(
            new DefaultHttpClientFactory(),
            URI.create("http://localhost:" + port), "apikey"
        );

        UserModelId modelId = new UserModelId(new UserId("test"), "testGetDocument");
        DocumentId docId = new DocumentId(10);
        Document document = client.getDocument(new GetDocumentRequest(modelId, docId));

        Assert.assertNotNull(document);
        Assert.assertEquals(document.getId(), docId);
View Full Code Here

TOP

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

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.