Package org.jivesoftware.smackx.pubsub

Examples of org.jivesoftware.smackx.pubsub.ConfigurationEvent


{
  @Override
  protected PacketExtension createReturnExtension(String currentElement, String currentNamespace, Map<String, String> attMap, List<? extends PacketExtension> content)
  {
    if (content.size() == 0)
      return new ConfigurationEvent(attMap.get("node"));
    else
      return new ConfigurationEvent(attMap.get("node"), new ConfigureForm((DataForm)content.iterator().next()));
  }
View Full Code Here

TOP

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

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.