Package org.jivesoftware.smackx.pubsub

Examples of org.jivesoftware.smackx.pubsub.Subscription


        isRequired = true;
     
      while (parser.next() != XmlPullParser.END_TAG && parser.getName() != "subscribe-options");
    }
    while (parser.getEventType() != XmlPullParser.END_TAG) parser.next();
    return new Subscription(jid, nodeId, subId, (state == null ? null : Subscription.State.valueOf(state)), isRequired);
  }
View Full Code Here

TOP

Related Classes of org.jivesoftware.smackx.pubsub.Subscription

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.