aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/java/de/thedevstack/conversationsplus/services/muc/OnConferenceConfigurationFetched.java
blob: 7e7222fd60129cdb5d2aba284fdaf0e8bc82c761 (plain)
1
2
3
4
5
6
7
8
9
10
package de.thedevstack.conversationsplus.services.muc;

import de.thedevstack.conversationsplus.entities.Conversation;
import de.thedevstack.conversationsplus.xml.Element;

public interface OnConferenceConfigurationFetched {
	void onConferenceConfigurationFetched(Conversation conversation);

	void onFetchFailed(Conversation conversation, Element error);
}