mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-05 08:05:58 +01:00
f155cb4d07
Separated the reading of provider files from the ProviderManager. Manager now only manages. Added ability to add collections of providers to the manager via a ProviderLoader, of which there is one default implementation which loads from the default file format. Now provider files can be programmatically added at any time. Also updated the configuration abilities so that a provider file can also be set via VM arg, as well as the smack configuration itself. Introduced Java Util Logging as well. git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/branches/smack_3_4_0@13861 b35dd754-fafc-0310-a699-88a17e54d16e
33 lines
1.2 KiB
Java
33 lines
1.2 KiB
Java
package org.jivesoftware.smack.provider;
|
|
|
|
/**
|
|
* Defines the information required to register a packet extension Provider with the {@link ProviderManager} when using the
|
|
* {@link ProviderLoader}.
|
|
*
|
|
* @author Robin Collier
|
|
*
|
|
*/
|
|
public final class ExtensionProviderInfo extends AbstractProviderInfo {
|
|
|
|
/**
|
|
* Defines an extension provider which implements the <code>PacketExtensionProvider</code> interface.
|
|
*
|
|
* @param elementName Element that provider parses.
|
|
* @param namespace Namespace that provider parses.
|
|
* @param extProvider The provider implementation.
|
|
*/
|
|
public ExtensionProviderInfo(String elementName, String namespace, PacketExtensionProvider extProvider) {
|
|
super(elementName, namespace, extProvider);
|
|
}
|
|
|
|
/**
|
|
* Defines an extension provider which is adheres to the JavaBean spec for parsing the extension.
|
|
*
|
|
* @param elementName Element that provider parses.
|
|
* @param namespace Namespace that provider parses.
|
|
* @param beanClass The provider bean class.
|
|
*/
|
|
public ExtensionProviderInfo(String elementName, String namespace, Class<?> beanClass) {
|
|
super(elementName, namespace, beanClass);
|
|
}
|
|
}
|