Class AddDomainRequest
- Object
-
- AddDomainRequest
-
- All Implemented Interfaces:
Serializable
public class AddDomainRequest extends Object implements Serializable
The properties of the domain to be added.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
AddDomainRequest.Builder
-
Constructor Summary
Constructors Constructor Description AddDomainRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static AddDomainRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getCommunityId()
Required. The ID of the community that the new domain should be added to.String
getDescription()
The description of the new domain.Boolean
getExcludedFromAutoHyperlinking()
UUID
getId()
@NotNull String
getName()
Required. The name of the new domain.@NotNull UUID
getTypeId()
Required. The ID of the domain type of the new domain.int
hashCode()
void
setCommunityId(@NotNull UUID communityId)
Required. The ID of the community that the new domain should be added to.void
setDescription(String description)
The description of the new domain.void
setExcludedFromAutoHyperlinking(Boolean excludedFromAutoHyperlinking)
void
setId(UUID id)
void
setName(@NotNull String name)
Required. The name of the new domain.void
setTypeId(@NotNull UUID typeId)
Required. The ID of the domain type of the new domain.String
toString()
-
-
-
Method Detail
-
builder
public static AddDomainRequest.Builder builder()
-
getName
@NotNull public @NotNull String getName()
Required. The name of the new domain. Should be unique within the community.
-
getCommunityId
@NotNull public @NotNull UUID getCommunityId()
Required. The ID of the community that the new domain should be added to.
-
getTypeId
@NotNull public @NotNull UUID getTypeId()
Required. The ID of the domain type of the new domain.
-
getDescription
public String getDescription()
The description of the new domain.
-
getId
public UUID getId()
-
getExcludedFromAutoHyperlinking
public Boolean getExcludedFromAutoHyperlinking()
-
setName
public void setName(@NotNull @NotNull String name)
Required. The name of the new domain. Should be unique within the community.
-
setCommunityId
public void setCommunityId(@NotNull @NotNull UUID communityId)
Required. The ID of the community that the new domain should be added to.
-
setTypeId
public void setTypeId(@NotNull @NotNull UUID typeId)
Required. The ID of the domain type of the new domain.
-
setDescription
public void setDescription(String description)
The description of the new domain.
-
setId
public void setId(UUID id)
-
setExcludedFromAutoHyperlinking
public void setExcludedFromAutoHyperlinking(Boolean excludedFromAutoHyperlinking)
-
equals
public boolean equals(Object o)
- Overrides:
equals
in classObject
-
canEqual
protected boolean canEqual(Object other)
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classObject
-
toString
public String toString()
- Overrides:
toString
in classObject
-
-