/** * $RCSfile$ * $Revision$ * $Date$ * * Copyright (C) 2004 Jive Software. All rights reserved. * * This software is published under the terms of the GNU Public License (GPL), * a copy of which is included in this distribution. */packageorg.jivesoftware.messenger;importorg.xmpp.packet.JID;/** * * * @author Matt Tucker */publicinterfaceRoutableChannelHandlerextendsChannelHandler{/** * Returns the XMPP address. The address is used by services like the core * server packet router to determine if a packet should be sent to the handler. * Handlers that are working on behalf of the server should use the generic server * hostname address (e.g. server.com). * * @return the XMPP address. */publicJIDgetAddress();}