5051525354555657
} @Test public void unmarshalVisible() throws JAXBException, XMLStreamException { String xml = "<visible xmlns='urn:xmpp:invisible:0'/>"; Visible visible = unmarshal(xml, Visible.class); Assert.assertNotNull(visible); }
6061626364656667
* * @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 becomeVisible() throws XmppException { xmppSession.query(new IQ(IQ.Type.SET, new Visible())); invisible = false; }