The source code for this package is located in src/gov/nist/sip/proxy. The proxy is a pure JAIN-SIP

源代码在线查看: presentitytag.java

软件大小: 2215 K
上传用户: qq448792326
关键词: proxy The JAIN-SIP package
下载地址: 免注册下载 普通下载 VIP

相关代码

				/*				 * PresentityTag.java				 *				 * Created on September 24, 2002, 11:01 AM				 */								package gov.nist.sip.instantmessaging.presence.cpimparser;								/**				 *				 * @author  deruelle				 * @version 1.0				 */				public class PresentityTag  {								    private String id;				    				    /** Creates new PresentityTag */				    public PresentityTag() {				        id=null;				    }								    public void setId(String id) {				        this.id=id;				    }				    				    public String getId() {				        return id;				    }								    public String toString() {				        String result="\n";				        return result;				    }				    				}							

相关资源