1 20 21 package org.xmpp.component; 22 23 import org.xmpp.packet.Packet; 24 import org.xmpp.packet.JID; 25 26 33 public interface Component { 34 35 40 public String getName(); 41 42 47 public String getDescription(); 48 49 55 public void processPacket(Packet packet); 56 57 71 public void initialize(JID jid, ComponentManager componentManager) throws ComponentException; 72 73 80 public void start(); 81 82 86 public void shutdown(); 87 } | Popular Tags |