8 lines
206 B
Java
8 lines
206 B
Java
package eu.siacs.conversations.xmpp;
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
public interface OnContactStatusChanged {
|
|
void onContactStatusChanged(final Contact contact, final boolean online);
|
|
}
|