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