123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687 |
- package bssoft.stack.sip;
- public class stackKey {
- public String KEY_BSS_SMARTINFO;
- public String KEY_BSS_ID;
- public String KEY_BSS_AUTHID;
- public String KEY_BSS_PASSWORD;
- public String KEY_BSS_CID;
- public String KEY_BSS_SERVERIP;
- public String KEY_BSS_SERVERDOMAIN;
- public String KEY_BSS_SERVERPORT;
- public String KEY_BSS_PMPSET;
- public String KEY_BSS_IMSI;
- public String KEY_BSS_GENERALPHONE;
- public String KEY_BSS_WEBID;
- public String KEY_BSS_WEBPWD;
- public String KEY_BSS_LATESTDIAL;
- public String KEY_BSS_FORWARD;
- public String strId = "";
- public String strCid = "";
- public String strAuthid = "";
- public String strAuthpassword = "";
- public String strServerHost = "";
- public String strServerDomain = "";
- public String strImsi = "";
- public String strGeneralPhone = "";
- public String strWebId = "";
- public String strWebPwd = "";
- public int serverPort = 5060;
- public String strForward = "";
- public stackKey() {
- this.KEY_BSS_SMARTINFO = "bss_smartinfo";
- this.KEY_BSS_ID = "bss_id";
- this.KEY_BSS_AUTHID = "bss_authid";
- this.KEY_BSS_PASSWORD = "bss_password";
- this.KEY_BSS_CID = "bss_cid";
- this.KEY_BSS_SERVERIP = "bss_serverip";
- this.KEY_BSS_SERVERDOMAIN = "bss_serverdomain";
- this.KEY_BSS_SERVERPORT = "bss_serverport";
- this.KEY_BSS_PMPSET = "bss_pmpset";
- this.KEY_BSS_IMSI = "bss_imsi";
- this.KEY_BSS_GENERALPHONE = "bss_generalphone";
- this.KEY_BSS_WEBID = "bss_webid";
- this.KEY_BSS_WEBPWD = "bss_webpwd";
- this.KEY_BSS_LATESTDIAL = "bss_latestdial";
- this.KEY_BSS_FORWARD = "bss_forward";
- this.strId = "";
- this.strCid = "";
- this.strAuthid = "";
- this.strAuthpassword = "";
- this.strServerHost = "";
- this.strServerDomain = "";
- this.strImsi = "";
- this.strGeneralPhone = "";
- this.strWebId = "";
- this.strWebPwd = "";
- this.serverPort = 5060;
- this.strForward = "";
- }
- }
|