* @see rocks.xmpp.extensions.muc.model.RoomConfigurationForm
* @see <a href="http://xmpp.org/extensions/xep-0045.html#createroom-reserved">10.1.3 Creating a Reserved Room</a>
* @see #submitConfigurationForm(rocks.xmpp.extensions.data.model.DataForm)
*/
public DataForm getConfigurationForm() throws XmppException {
IQ result = xmppSession.query(new IQ(roomJid, IQ.Type.GET, new MucOwner()));
MucOwner mucOwner = result.getExtension(MucOwner.class);
return mucOwner.getConfigurationForm();
}