mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
[muc] Add support for muc#roomconfig_roomname in MucConfigFormManager
This commit is contained in:
parent
1bf0aed0f5
commit
c4ce6b4707
1 changed files with 17 additions and 1 deletions
|
@ -1,6 +1,6 @@
|
||||||
/**
|
/**
|
||||||
*
|
*
|
||||||
* Copyright 2015-2020 Florian Schmaus
|
* Copyright 2015-2024 Florian Schmaus
|
||||||
*
|
*
|
||||||
* Licensed under the Apache License, Version 2.0 (the "License");
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
* you may not use this file except in compliance with the License.
|
* you may not use this file except in compliance with the License.
|
||||||
|
@ -88,6 +88,10 @@ public class MucConfigFormManager {
|
||||||
*/
|
*/
|
||||||
public static final String MUC_ROOMCONFIG_PUBLICLYSEARCHABLEROOM = "muc#roomconfig_publicroom";
|
public static final String MUC_ROOMCONFIG_PUBLICLYSEARCHABLEROOM = "muc#roomconfig_publicroom";
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The constant String {@value}.
|
||||||
|
*/
|
||||||
|
public static final String MUC_ROOMCONFIG_ROOMNAME = "muc#roomconfig_roomname";
|
||||||
|
|
||||||
private final MultiUserChat multiUserChat;
|
private final MultiUserChat multiUserChat;
|
||||||
private final FillableForm answerForm;
|
private final FillableForm answerForm;
|
||||||
|
@ -267,6 +271,18 @@ public class MucConfigFormManager {
|
||||||
return this;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public boolean supportsRoomname() {
|
||||||
|
return answerForm.hasField(MUC_ROOMCONFIG_ROOMNAME);
|
||||||
|
}
|
||||||
|
|
||||||
|
public MucConfigFormManager setRoomName(String roomName) throws MucConfigurationNotSupportedException {
|
||||||
|
if (!supportsRoomname()) {
|
||||||
|
throw new MucConfigurationNotSupportedException(MUC_ROOMCONFIG_ROOMNAME);
|
||||||
|
}
|
||||||
|
answerForm.setAnswer(MUC_ROOMCONFIG_ROOMNAME, roomName);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Check if the room supports password protection.
|
* Check if the room supports password protection.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue