Package org.apache.vysper.xmpp.modules.extension.xep0060_pubsub

Examples of org.apache.vysper.xmpp.modules.extension.xep0060_pubsub.SubscriptionItem


     * Traverses all subscriptions and collects the subscriptions of the
     * user (matching bareJID).
     */
    public void visit(String nodeName, String subID, Entity sub) {
        if(sub.getBareJID().equals(bareJID)) {
            SubscriptionItem si = new SubscriptionItem(nodeName, subID, sub);
            subscriptions.add(si);
        }
    }
View Full Code Here


     * Traverses all subscriptions and collects the subscriptions of the
     * user (matching bareJID).
     */
    public void visit(String nodeName, String subID, Entity sub) {
        if (sub.getBareJID().equals(bareJID)) {
            SubscriptionItem si = new SubscriptionItem(nodeName, subID, sub);
            subscriptions.add(si);
        }
    }
View Full Code Here

TOP

Related Classes of org.apache.vysper.xmpp.modules.extension.xep0060_pubsub.SubscriptionItem

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.