mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-02 14:55:58 +01:00
15 lines
364 B
Java
15 lines
364 B
Java
|
package org.jivesoftware.smack;
|
||
|
|
||
|
/**
|
||
|
* Defines an initialization class that will be instantiated and invoked by the {@link SmackConfiguration} class during initialization.
|
||
|
*
|
||
|
* <p>
|
||
|
* Any implementation of this class MUST have a default constructor.
|
||
|
*
|
||
|
* @author Robin Collier
|
||
|
*
|
||
|
*/
|
||
|
public interface SmackInitializer {
|
||
|
void initialize();
|
||
|
}
|