mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
pubsub: remove 'replyto' and 'replyroom' configure settings
Those configurations where removed with version 1.13 (2010-07-12) of XEP-0060. This change is part of the effort to upgrade Smack's PubSub implementation (SMACK-364).
This commit is contained in:
parent
f61ecb65e7
commit
2c39dff653
2 changed files with 0 additions and 52 deletions
|
@ -494,44 +494,6 @@ public class ConfigureForm extends Form {
|
||||||
setAnswer(ConfigureNodeFields.publish_model.getFieldName(), getListSingle(publish.toString()));
|
setAnswer(ConfigureNodeFields.publish_model.getFieldName(), getListSingle(publish.toString()));
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
|
||||||
* List of the multi user chat rooms that are specified as reply rooms.
|
|
||||||
*
|
|
||||||
* @return The reply room JID's
|
|
||||||
*/
|
|
||||||
public List<String> getReplyRoom() {
|
|
||||||
return getFieldValues(ConfigureNodeFields.replyroom);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the multi user chat rooms that are specified as reply rooms.
|
|
||||||
*
|
|
||||||
* @param replyRooms The multi user chat room to use as reply rooms
|
|
||||||
*/
|
|
||||||
public void setReplyRoom(List<String> replyRooms) {
|
|
||||||
addField(ConfigureNodeFields.replyroom, FormField.Type.list_multi);
|
|
||||||
setAnswer(ConfigureNodeFields.replyroom.getFieldName(), replyRooms);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the specific JID's for reply to.
|
|
||||||
*
|
|
||||||
* @return The JID's
|
|
||||||
*/
|
|
||||||
public List<String> getReplyTo() {
|
|
||||||
return getFieldValues(ConfigureNodeFields.replyto);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Sets the specific JID's for reply to.
|
|
||||||
*
|
|
||||||
* @param replyTos The JID's to reply to
|
|
||||||
*/
|
|
||||||
public void setReplyTo(List<String> replyTos) {
|
|
||||||
addField(ConfigureNodeFields.replyto, FormField.Type.list_multi);
|
|
||||||
setAnswer(ConfigureNodeFields.replyto.getFieldName(), replyTos);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the roster groups that are allowed to subscribe and retrieve items.
|
* Gets the roster groups that are allowed to subscribe and retrieve items.
|
||||||
*
|
*
|
||||||
|
|
|
@ -176,20 +176,6 @@ public enum ConfigureNodeFields {
|
||||||
*/
|
*/
|
||||||
publish_model,
|
publish_model,
|
||||||
|
|
||||||
/**
|
|
||||||
* The specific multi-user chat rooms to specify for replyroom.
|
|
||||||
*
|
|
||||||
* <p><b>Value: List of JIDs as Strings</b></p>
|
|
||||||
*/
|
|
||||||
replyroom,
|
|
||||||
|
|
||||||
/**
|
|
||||||
* The specific JID(s) to specify for replyto.
|
|
||||||
*
|
|
||||||
* <p><b>Value: List of JIDs as Strings</b></p>
|
|
||||||
*/
|
|
||||||
replyto,
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The roster group(s) allowed to subscribe and retrieve items.
|
* The roster group(s) allowed to subscribe and retrieve items.
|
||||||
*
|
*
|
||||||
|
|
Loading…
Reference in a new issue