Package org.eclipse.ecf.discovery

Examples of org.eclipse.ecf.discovery.DiscoveryContainerConfig


  private static final String _DNS_UPDATE = "_dns-update._udp."; //$NON-NLS-1$
  private static final boolean ADD = true;
  private static final boolean REMOVE = false;

  public DnsSdDiscoveryAdvertiser() {
    super(DnsSdNamespace.NAME, new DiscoveryContainerConfig(IDFactory
        .getDefault().createStringID(
            DnsSdDiscoveryAdvertiser.class.getName())));
  }
View Full Code Here


  private static final String DNS_SD_PATH = "path"; //$NON-NLS-1$
  private static final String DNS_SD_PTCL = "dns-sd.ptcl"; //$NON-NLS-1$

  public DnsSdDiscoveryLocator() {
    super(DnsSdNamespace.NAME, new DiscoveryContainerConfig(IDFactory
        .getDefault().createStringID(
            DnsSdDiscoveryLocator.class.getName())));
  }
View Full Code Here

  private Set knownServices;
  private ID targetId;

  public UserInputDiscoveryLocator() throws IDCreateException {
    super(UserInputNamespace.NAME, new DiscoveryContainerConfig(IDFactory.getDefault().createStringID(UserInputDiscoveryLocator.class.getName())));
    knownServices = Collections.synchronizedSet(new HashSet());
  }
View Full Code Here

TOP

Related Classes of org.eclipse.ecf.discovery.DiscoveryContainerConfig

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.