Package rocks.xmpp.extensions.invisible.model

Examples of rocks.xmpp.extensions.invisible.model.Visible


    }

    @Test
    public void unmarshalVisible() throws JAXBException, XMLStreamException {
        String xml = "<visible xmlns='urn:xmpp:invisible:0'/>";
        Visible visible = unmarshal(xml, Visible.class);
        Assert.assertNotNull(visible);
    }
View Full Code Here


     *
     * @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;
    }
View Full Code Here

TOP

Related Classes of rocks.xmpp.extensions.invisible.model.Visible

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.