📄 clientauthenticationmethod.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 + -