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

📄 exportedbinding.java

📁 The source code for this package is located in src/gov/nist/sip/proxy. The proxy is a pure JAIN-SIP
💻 JAVA
字号:
package gov.nist.sip.proxy.registrar;import java.util.*;/** Exported binding.* You can use RMI to get the bindings as an array of such values.*/public class ExportedBinding implements java.io.Serializable {	protected String requestURI;	protected String contactAddress;	protected String fromAddress;	protected String toAddress;	protected long   expiryTime;	protected String key;	public String getRequestURI() { return this.requestURI; }	public String getFromAddress() { return this.fromAddress; }	public String getToAddress() { return this.toAddress; }	public String getContactAddress() { return this.contactAddress; }	public long   getExpiryTime() { return this.expiryTime; }	public String getKey() { return this.key; }}

⌨️ 快捷键说明

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