📄 routingrule.java
字号:
package local.server;
import org.zoolu.sip.address.SipURL;
/** RoutingRule.
*/
public interface RoutingRule
{
/** Gets the proper next-hop SipURL for the selected URL.
* It return the SipURL used to reach the selected URL.
* @param sip_url the selected destination URL
* @return returns the proper next-hop SipURL for the selected URL
* if the routing rule matches the URL, otherwise it returns null. */
public SipURL getNexthop(SipURL sip_url);
/** Gets the String value. */
public String toString();
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -