⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 useridentitiesprovider.java

📁 openfire 服务器源码下载
💻 JAVA
字号:
/** * $RCSfile: $ * $Revision: $ * $Date: $ * * Copyright (C) 2008 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, or a commercial license * agreement with Jive. */package org.jivesoftware.openfire.disco;import org.dom4j.Element;import java.util.Iterator;/** * <p> * A <code>UserIdentitiesProvider</code> is responsible for providing the identities * of protocols supported by users. An example of a user identity is one * for PEP (XEP-0163): <identity category="pubsub" type="pep" /> * <p/> *  * <p> * When the server starts up, IQDiscoInfoHandler will request to all the services that implement * the UserIdentitiesProvider interface for their identities. Whenever a disco request is received * IQDiscoInfoHandler will add to the provided information all the collected identities. Therefore, a * service must implement this interface in order to offer/publish its identities as part of the * user identities. * </p> * * @author Armando Jagucki */public interface UserIdentitiesProvider {    /**     * Returns an Iterator (of Element) with the supported identities by users. The identities to     * include are the identities of protocols supported by all registered users on the server. The     * idea is that different modules may provide their identities that will ultimately be included     * in the list user identities.     *     * @return an Iterator (of Element) with identities of protocols supported by users.     */    public abstract Iterator<Element> getIdentities();}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -