Class ChangeRoomNameRequest

java.lang.Object
sfs3.client.requests.BaseRequest
sfs3.client.requests.ChangeRoomNameRequest
All Implemented Interfaces:
sfs3.client.requests.IClientRequest

public class ChangeRoomNameRequest extends BaseRequest
Changes the name of a Room.

If the renaming operation is successful, the roomNameChange event is dispatched to all the users who subscribed the Group to which the target Room belongs, including the user who renamed it. If the user is not the creator (owner) of the Room the roomNameChangeError event if fired. An administrator or moderator can override the first constrain (he is not requested to be the Room's owner).

If the Room was configured so that renaming is not allowed (see the RoomSettings.permissions parameter), the request is ignored and no error is fired.

See Also:
  • Field Details

  • Constructor Details

    • ChangeRoomNameRequest

      public ChangeRoomNameRequest(Room room, String newName)
      Creates a new ChangeRoomNameRequest instance. The instance must be passed to the SmartFox.send() method for the request to be performed.
      Parameters:
      room - The Room object corresponding to the Room whose name should be changed.
      newName - The new name to be assigned to the Room.
      See Also:
  • Method Details