mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-04 19:25:58 +01:00
17 lines
433 B
Java
17 lines
433 B
Java
|
package org.jivesoftware.smackx.provider;
|
||
|
|
||
|
import org.jivesoftware.smack.provider.UrlProviderFileInitializer;
|
||
|
|
||
|
/**
|
||
|
* Loads the default provider file for the Smack extensions on initialization.
|
||
|
*
|
||
|
* @author Robin Collier
|
||
|
*
|
||
|
*/
|
||
|
public class ExtensionInitializer extends UrlProviderFileInitializer {
|
||
|
@Override
|
||
|
protected String getFilePath() {
|
||
|
return "classpath:META-INF/extension.providers";
|
||
|
}
|
||
|
}
|