* @throws rocks.xmpp.core.stanza.model.StanzaException If the user attempts to set an active list but a list by that name does not exist, the server MUST return an {@code <item-not-found/>} stanza error to the user.
* @throws rocks.xmpp.core.session.NoResponseException If the entity did not respond.
* @see <a href="http://xmpp.org/extensions/xep-0016.html#protocol-active">2.4 Managing Active Lists</a>
*/
public void setActiveList(String name) throws XmppException {
Privacy privacy = new Privacy();
privacy.setActiveName(name);
setPrivacy(privacy);
}