Class ChangeUserGroupRequest
- Object
-
- ChangeUserGroupRequest
-
- All Implemented Interfaces:
Serializable
public class ChangeUserGroupRequest extends Object implements Serializable
The properties of the user group to be added.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ChangeUserGroupRequest.Builder
-
Constructor Summary
Constructors Constructor Description ChangeUserGroupRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static ChangeUserGroupRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getId()
Required. The ID of the user group to be changed.Boolean
getLocallyManaged()
Deprecated.This feature will be dropped.@NotNull String
getName()
Required. The name of the user group.int
hashCode()
void
setId(@NotNull UUID id)
Required. The ID of the user group to be changed.void
setLocallyManaged(Boolean locallyManaged)
Deprecated.This feature will be dropped.void
setName(@NotNull String name)
Required. The name of the user group.String
toString()
-
-
-
Method Detail
-
builder
public static ChangeUserGroupRequest.Builder builder()
-
getId
@NotNull public @NotNull UUID getId()
Required. The ID of the user group to be changed. Silently ignored if the ID is provided as path parameter of the request.
-
getName
@NotNull public @NotNull String getName()
Required. The name of the user group. Should be unique within all user groups.
-
getLocallyManaged
@Deprecated public Boolean getLocallyManaged()
Deprecated.This feature will be dropped.The locallyManaged flag of the user group. Indicates whether this UserGroup is locally managed or not.
-
setId
public void setId(@NotNull @NotNull UUID id)
Required. The ID of the user group to be changed. Silently ignored if the ID is provided as path parameter of the request.
-
setName
public void setName(@NotNull @NotNull String name)
Required. The name of the user group. Should be unique within all user groups.
-
setLocallyManaged
@Deprecated public void setLocallyManaged(Boolean locallyManaged)
Deprecated.This feature will be dropped.The locallyManaged flag of the user group. Indicates whether this UserGroup is locally managed or not.
-
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
-
-