1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-09-26 01:39:35 +02:00
Smack/core/src/main/java/org/jivesoftware/smack/SmackInitializer.java
2014-02-14 18:46:33 +01:00

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();
}