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

📄 clientauthenticationmethod.java

📁 基于JAINSIP的一个proxy源码
💻 JAVA
字号:
/* * ClientAuthenticationMethod.java * * Created on January 8, 2003, 9:49 AM */package gov.nist.sip.instantmessaging.authentication;/** * * @author  olivier deruelle */public interface ClientAuthenticationMethod {        /**     * Initialize the Client authentication method. This has to be     * done outside the constructor.     * @throws Exception if the parameters are not correct.     */    public void initialize(String realm,String userName,String uri,String nonce    ,String password,String method,String cnonce,String algorithm) throws Exception;            /**     * generate the response     * @returns null if the parameters given in the initialization are not     * correct.     */    public String generateResponse();    }

⌨️ 快捷键说明

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