0% found this document useful (0 votes)
133 views1 page

Which Java API Method Shows You The Parameters To

To create a domain in the Collibra Java API, refer to the AddDomainRequest class, specifically its builder, AddDomainRequest.Builder, which allows you to set necessary parameters like name, communityId, and typeId. The AddDomainRequest object holds these parameters, while DomainApi is the interface for domain operations but does not directly show creation parameters. Therefore, the key method to see the parameters for domain creation is AddDomainRequest.Builder.

Uploaded by

Sourav Patel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
133 views1 page

Which Java API Method Shows You The Parameters To

To create a domain in the Collibra Java API, refer to the AddDomainRequest class, specifically its builder, AddDomainRequest.Builder, which allows you to set necessary parameters like name, communityId, and typeId. The AddDomainRequest object holds these parameters, while DomainApi is the interface for domain operations but does not directly show creation parameters. Therefore, the key method to see the parameters for domain creation is AddDomainRequest.Builder.

Uploaded by

Sourav Patel
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Which Java API method shows you the

parameters to create a domain?


DomainApi
Add DomainRequest
AddDomainTypeRequest
To see the parameters required to create a domain in the Collibra Java API, you should refer to
the AddDomainRequest class, specifically its builder: AddDomainRequest.Builder. This builder
exposes methods to set all the necessary parameters-such as name, communityId, description,
typeId, and others-needed to construct an AddDomainRequest object, which is then used to
create a domain [1] [2] .
Here’s a summary of the relevant classes:
AddDomainRequest.Builder: Shows and allows you to set all parameters for creating a
domain (like name, description, communityId, typeId, etc.). This is the recommended way to
see and set the parameters [1] [2] .
AddDomainRequest: The request object that holds the parameters, created via the
builder [1] .
DomainApi: The API interface for domain operations, but it does not directly show the
creation parameters-it uses the AddDomainRequest object for that purpose [3] [2] .
So, the Java API method/class that shows you the parameters to create a domain is
AddDomainRequest (and more specifically, AddDomainRequest.Builder) [1] [2] .

1. https://developer.collibra.com/apis/java/javav2/com/collibra/dgc/core/api/dto/instance/domain/AddDom
ainRequest.html
2. https://studyx.ai/questions/4lfjp9g/which-java-api-method-shows-you-the-parameters-to-create-a-do
main-in-collibra-1
3. https://developer.collibra.com/apis/java/javav2/com/collibra/dgc/core/api/component/instance/DomainA
pi.html

You might also like