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

📄 usernameprovider.java

📁 基于Jabber协议的即时消息服务器
💻 JAVA
字号:
/** * $RCSfile$ * $Revision: $ * $Date: $ * * Copyright (C) 2006 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. */package org.jivesoftware.wildfire.user;import org.xmpp.packet.JID;/** * Interface to be implemented by components that are capable of returning the name of entities * when running as internal components. * * @author Gaston Dombiak */public interface UserNameProvider {    /**     * Returns the name of the entity specified by the following JID.     *     * @param entity JID of the entity to return its name.     * @return the name of the entity specified by the following JID.     */    abstract String getUserName(JID entity);}

⌨️ 快捷键说明

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