cheogram/src/main/java/eu/siacs/conversations/xmpp/OnGatewayResult.java
Stephen Paul Weber 7845ded2d3
Try all gateway translations options
Send jabber:iq:gateway if we're responding to that and fetch translated
response as the JID.  Otherwise use JID escaping if supported.
Otherwise fall back to the dumb ancient % escaping.
2022-03-09 20:31:03 -05:00

8 lines
222 B
Java

package eu.siacs.conversations.xmpp;
public interface OnGatewayResult {
// if prompt is null, there was an error
// errorText may or may not be set
public void onGatewayResult(String prompt, String errorText);
}