Examples of EndOfSessionCommandStanza


Examples of org.apache.vysper.xmpp.protocol.commandstanza.EndOfSessionCommandStanza

        StanzaBuilder presenceUnavailBuilder = createPresenceStanza(null, null, null, PresenceStanzaType.UNAVAILABLE, null, status);
        if (terminationCause == null) {
            return presenceUnavailBuilder.build();
        }
        else {
            return new EndOfSessionCommandStanza(presenceUnavailBuilder.build(), terminationCause);
        }
    }
View Full Code Here

Examples of org.apache.vysper.xmpp.protocol.commandstanza.EndOfSessionCommandStanza

        sessionContext.getServerRuntimeContext().getPresenceCache().remove(user);

        SessionContext.SessionTerminationCause terminationCause = null;
        if (presenceStanza instanceof EndOfSessionCommandStanza) {
            EndOfSessionCommandStanza commandStanza = (EndOfSessionCommandStanza) presenceStanza;
            terminationCause = commandStanza.getSessionTerminationCause();
        }

        // TODO check if we do have to do something about resource priority

        List<Entity> contacts = new ArrayList<Entity>();
View Full Code Here

Examples of org.apache.vysper.xmpp.protocol.commandstanza.EndOfSessionCommandStanza

        StanzaBuilder presenceUnavailBuilder = createPresenceStanza(null, null, null, PresenceStanzaType.UNAVAILABLE,
                null, status);
        if (terminationCause == null) {
            return presenceUnavailBuilder.build();
        } else {
            return new EndOfSessionCommandStanza(presenceUnavailBuilder.build(), terminationCause);
        }
    }
View Full Code Here

Examples of org.apache.vysper.xmpp.protocol.commandstanza.EndOfSessionCommandStanza

        sessionContext.getServerRuntimeContext().getPresenceCache().remove(user);

        SessionContext.SessionTerminationCause terminationCause = null;
        if (presenceStanza instanceof EndOfSessionCommandStanza) {
            EndOfSessionCommandStanza commandStanza = (EndOfSessionCommandStanza) presenceStanza;
            terminationCause = commandStanza.getSessionTerminationCause();
        }

        // TODO check if we do have to do something about resource priority

        List<Entity> contacts = new ArrayList<Entity>();
View Full Code Here

Examples of org.apache.vysper.xmpp.protocol.commandstanza.EndOfSessionCommandStanza

        StanzaBuilder presenceUnavailBuilder = createPresenceStanza(null, null, null, PresenceStanzaType.UNAVAILABLE,
                null, status);
        if (terminationCause == null) {
            return presenceUnavailBuilder.build();
        } else {
            return new EndOfSessionCommandStanza(presenceUnavailBuilder.build(), terminationCause);
        }
    }
View Full Code Here

Examples of org.apache.vysper.xmpp.protocol.commandstanza.EndOfSessionCommandStanza

        sessionContext.getServerRuntimeContext().getPresenceCache().remove(user);

        SessionContext.SessionTerminationCause terminationCause = null;
        if (presenceStanza instanceof EndOfSessionCommandStanza) {
            EndOfSessionCommandStanza commandStanza = (EndOfSessionCommandStanza) presenceStanza;
            terminationCause = commandStanza.getSessionTerminationCause();
        }

        // TODO check if we do have to do something about resource priority

        List<Entity> contacts = new ArrayList<Entity>();
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.