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: [Link]. 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:
[Link]: 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, [Link]) [1] [2] .
⁂
1. [Link]
[Link]
2. [Link]
main-in-collibra-1
3. [Link]
[Link]