diff options
author | Vitaly Takmazov | 2017-01-17 17:31:19 +0300 |
---|---|---|
committer | Vitaly Takmazov | 2017-01-17 17:31:19 +0300 |
commit | ed993af2e0e95b9af8c949fc0a5c812e93731c14 (patch) | |
tree | 4f47adf8682b85c9a35ef54c000328d2596c63ca /juick-xmpp-bot/src/main/java | |
parent | 2ab4bed9aa1d3142e95f6861871097626e5958c1 (diff) |
juick-server: messagePosted protocol event
Diffstat (limited to 'juick-xmpp-bot/src/main/java')
-rw-r--r-- | juick-xmpp-bot/src/main/java/com/juick/components/XMPPBot.java | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/juick-xmpp-bot/src/main/java/com/juick/components/XMPPBot.java b/juick-xmpp-bot/src/main/java/com/juick/components/XMPPBot.java index 234d04f8..d5c4c045 100644 --- a/juick-xmpp-bot/src/main/java/com/juick/components/XMPPBot.java +++ b/juick-xmpp-bot/src/main/java/com/juick/components/XMPPBot.java @@ -137,4 +137,9 @@ public class XMPPBot implements AutoCloseable, ProtocolListener { component.send(mm); }); } + + @Override + public void messagePosted(com.juick.Message msg) { + + } } |