Skip to content

Commit

Permalink
Implementing handleIQError.
Browse files Browse the repository at this point in the history
  • Loading branch information
fgan1 committed Sep 10, 2014
1 parent 32be387 commit 82d4270
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
import org.fogbowcloud.rendezvous.xmpp.handler.WhoIsAliveHandler;
import org.fogbowcloud.rendezvous.xmpp.handler.WhoIsAliveSyncHandler;
import org.jamppa.component.XMPPComponent;
import org.xmpp.packet.IQ;

public class RendezvousXMPPComponent extends XMPPComponent {

Expand All @@ -33,6 +34,11 @@ private void addGetHandlers() {
addGetHandler(new WhoIsAliveHandler(rendezvous));
addGetHandler(new WhoIsAliveSyncHandler(rendezvous));
}

@Override
protected void handleIQError(IQ iq) {
super.handleIQResult(iq);
}

@Override
public void process() {
Expand Down

0 comments on commit 82d4270

Please sign in to comment.