public static class

DataCategoryGroupListRequest.Builder

extends KnowledgeRequest.KnowledgeRequestBuilder<T extends KnowledgeRequestBuilder<T>>
java.lang.Object
   ↳ com.salesforce.android.service.common.fetchsave.requests.FetchSaveRequest.FetchSaveRequestBuilder<T extends com.salesforce.android.service.common.fetchsave.requests.FetchSaveRequest.FetchSaveRequestBuilder<T>>
     ↳ com.salesforce.android.knowledge.core.requests.KnowledgeRequest.KnowledgeRequestBuilder<T extends com.salesforce.android.knowledge.core.requests.KnowledgeRequest.KnowledgeRequestBuilder<T>>
       ↳ com.salesforce.android.knowledge.core.requests.DataCategoryGroupListRequest.Builder

Class Overview

Builder for the DataCategoryGroupListRequest class.

Summary

Public Methods
DataCategoryGroupListRequest build()
Builds the DataCategoryGroupListRequest without submitting to to a KnowledgeClient.
Async<DataCategoryGroupList> submit(KnowledgeClient client)
Builds an DataCategoryGroupListRequest and submits it directly to the given KnowledgeClient.
Protected Methods
DataCategoryGroupListRequest.Builder getThis()
[Expand]
Inherited Methods
From class com.salesforce.android.service.common.fetchsave.requests.FetchSaveRequest.FetchSaveRequestBuilder
From class java.lang.Object

Public Methods

public DataCategoryGroupListRequest build ()

Builds the DataCategoryGroupListRequest without submitting to to a KnowledgeClient.

Returns

public Async<DataCategoryGroupList> submit (KnowledgeClient client)

Builds an DataCategoryGroupListRequest and submits it directly to the given KnowledgeClient. This is a convenience method for client.submit(builder.build());

Parameters
client The KnowledgeClient to which to submit the request.
Returns
  • The Async return value representing the result of the request.

Protected Methods