Examples of DiscoServerItem


Examples of org.jivesoftware.openfire.disco.DiscoServerItem

    if (!isEnabled())
    {
      return items.iterator();
    }

    final DiscoServerItem item = new DiscoServerItem(new JID(
      getServiceDomain()), "Media Proxy Service", null, null, this, this);
    items.add(item);
    return items.iterator();
  }
View Full Code Here

Examples of org.jivesoftware.openfire.disco.DiscoServerItem

        List<DiscoServerItem> items = new ArrayList<DiscoServerItem>();
        if(!isEnabled()) {
            return items.iterator();
        }

        final DiscoServerItem item = new DiscoServerItem(new JID(
      getServiceDomain()), "Socks 5 Bytestreams Proxy", null, null, this,
      this);
    items.add(item);
       
        return items.iterator();
View Full Code Here

Examples of org.jivesoftware.openfire.disco.DiscoServerItem

    {
      return null;
    }
   
    final ArrayList<DiscoServerItem> items = new ArrayList<DiscoServerItem>();
    final DiscoServerItem item = new DiscoServerItem(new JID(
      getServiceDomain()), getDescription(), null, null, this, this);
    items.add(item);
    return items.iterator();
  }
View Full Code Here

Examples of org.jivesoftware.openfire.disco.DiscoServerItem

        // Check if the service is disabled. Info is not available when disabled.
        if (!isServiceEnabled()) {
            return null;
        }
        ArrayList<DiscoServerItem> items = new ArrayList<DiscoServerItem>();
    final DiscoServerItem item = new DiscoServerItem(new JID(
      getServiceDomain()), "Publish-Subscribe service", null, null, this,
      this);
    items.add(item);
    return items.iterator();
    }
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.