4344454647484950
} @Test public void unmarshalInvisible() throws JAXBException, XMLStreamException { String xml = "<invisible xmlns='urn:xmpp:invisible:0'/>"; Invisible invisible = unmarshal(xml, Invisible.class); Assert.assertNotNull(invisible); }
4950515253545556
* * @throws rocks.xmpp.core.stanza.model.StanzaException If the entity returned a stanza error. * @throws rocks.xmpp.core.session.NoResponseException If the entity did not respond. */ public void becomeInvisible() throws XmppException { xmppSession.query(new IQ(IQ.Type.SET, new Invisible())); invisible = true; }