Package org.jivesoftware.smack.provider
Interface ProviderLoader
-
- All Known Implementing Classes:
ProviderFileLoader
public interface ProviderLoader
Used to load providers into theProviderManager.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Collection<ExtensionProviderInfo>getExtensionProviderInfo()Provides the extension providers for the creation of extension providers to be added to theProviderManager.Collection<IQProviderInfo>getIQProviderInfo()Provides the IQ provider info for the creation of IQ providers to be added to theProviderManager.Collection<StreamFeatureProviderInfo>getStreamFeatureProviderInfo()Provides the stream feature providers information for the creation of stream feature providers to be added to theProviderManager.
-
-
-
Method Detail
-
getIQProviderInfo
Collection<IQProviderInfo> getIQProviderInfo()
Provides the IQ provider info for the creation of IQ providers to be added to theProviderManager.- Returns:
- The IQ provider info to load.
-
getExtensionProviderInfo
Collection<ExtensionProviderInfo> getExtensionProviderInfo()
Provides the extension providers for the creation of extension providers to be added to theProviderManager.- Returns:
- The extension provider info to load.
-
getStreamFeatureProviderInfo
Collection<StreamFeatureProviderInfo> getStreamFeatureProviderInfo()
Provides the stream feature providers information for the creation of stream feature providers to be added to theProviderManager.- Returns:
- The extension provider info to load.
-
-