Examples of Invisible


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

    }

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

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

     *
     * @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;
    }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.