exportedbinding.java
来自「The source code for this package is loca」· Java 代码 · 共 26 行
JAVA
26 行
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 + =
减小字号Ctrl + -
显示快捷键?