Package jadex.bridge.service.search
Interface IRegistryDataProvider
- 
 public interface IRegistryDataProviderInterface for the search functionality to get the registry data.
- 
- 
Method SummaryAll Methods Instance Methods Abstract Methods Modifier and Type Method Description <T> java.util.Set<ServiceQueryInfo<T>>getQueries(ClassInfo type)Get queries per type.java.util.Iterator<IService>getServices(ClassInfo type)Get services per type.booleanisIncluded(IComponentIdentifier cid, IService ser)Test if a service is included.
 
- 
- 
- 
Method Detail- 
getServicesjava.util.Iterator<IService> getServices(ClassInfo type) Get services per type.- Parameters:
- type- The interface type. If type is null all services are returned.
- Returns:
- First matching service or null.
 
 - 
getQueries<T> java.util.Set<ServiceQueryInfo<T>> getQueries(ClassInfo type) Get queries per type.- Parameters:
- type- The interface type. If type is null all services are returned.
- Returns:
- The queries.
 
 - 
isIncludedboolean isIncluded(IComponentIdentifier cid, IService ser) Test if a service is included.- Parameters:
- ser- The service.
- Returns:
- True if is included.
 
 
- 
 
-