package de.thedevstack.conversationsplus.ui; import android.app.PendingIntent; public interface UiCallback { void success(T object); void error(int errorCode, T object); void userInputRequried(PendingIntent pi, T object); }