subscriber.java
来自「First of all, the Applet-phone is a SIP 」· Java 代码 · 共 46 行
JAVA
46 行
/* * Subscriber.java * * Created on September 26, 2002, 6:00 PM */package gov.nist.examples.bps.reader.presence;import javax.sip.*;import javax.sip.message.*; /** * * @author deruelle * @version 1.0 */public class Subscriber { private String subscriberName; private Response okSent; private Dialog dialog; /** Creates new Subscriber */ public Subscriber(String subscriberName,Response okSent) { this.subscriberName=subscriberName; this.okSent=okSent; } public Dialog getDialog() { return dialog; } public void setDialog(Dialog dialog) { this.dialog=dialog; } public Response getOkSent() { return okSent; } public String getSubscriberName() { return subscriberName; } }
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?