Skip to main content
summaryrefslogtreecommitdiffstats
blob: 6e7d0648ef87844444272846e1b708360493ce6f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
package org.eclipse.ecf.osgi.services.remoteserviceadmin;

import org.eclipse.ecf.discovery.IDiscoveryAdvertiser;
import org.eclipse.ecf.discovery.IServiceInfo;

public interface IServiceInfoFactory {

	public IServiceInfo createServiceInfoForDiscovery(EndpointDescription endpointDescription, IDiscoveryAdvertiser advertiser);
	
	public IServiceInfo removeServiceInfoForUndiscovery(EndpointDescription endpointDescription, IDiscoveryAdvertiser advertiser);
	
}

Back to the top