Class SetUsersForUserGroupRequest
- Object
-
- SetUsersForUserGroupRequest
-
- All Implemented Interfaces:
Serializable
public class SetUsersForUserGroupRequest extends Object implements Serializable
The properties needed to set the users that belong to a user group.- See Also:
- Serialized Form
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
SetUsersForUserGroupRequest.Builder
-
Constructor Summary
Constructors Constructor Description SetUsersForUserGroupRequest()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static SetUsersForUserGroupRequest.Builder
builder()
protected boolean
canEqual(Object other)
boolean
equals(Object o)
@NotNull UUID
getUserGroupId()
Required. The ID of the user group whose users will be set.@NotNull List<UUID>
getUserIds()
Required. The list of user IDs that will be assigned to the group.int
hashCode()
void
setUserGroupId(@NotNull UUID userGroupId)
Required. The ID of the user group whose users will be set.void
setUserIds(@NotNull List<UUID> userIds)
Required. The list of user IDs that will be assigned to the group.String
toString()
-
-
-
Method Detail
-
builder
public static SetUsersForUserGroupRequest.Builder builder()
-
getUserGroupId
@NotNull public @NotNull UUID getUserGroupId()
Required. The ID of the user group whose users will be set.
-
getUserIds
@NotNull public @NotNull List<UUID> getUserIds()
Required. The list of user IDs that will be assigned to the group.
-
setUserGroupId
public void setUserGroupId(@NotNull @NotNull UUID userGroupId)
Required. The ID of the user group whose users will be set.
-
setUserIds
public void setUserIds(@NotNull @NotNull List<UUID> userIds)
Required. The list of user IDs that will be assigned to the group.
-
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
-
-