亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來(lái)到蟲(chóng)蟲(chóng)下載站! | ?? 資源下載 ?? 資源專輯 ?? 關(guān)于我們
? 蟲(chóng)蟲(chóng)下載站

?? settings.java

?? 發(fā)送短信 接收短信 多種接口com/net/modem 開(kāi)發(fā)庫(kù)
?? JAVA
字號(hào):
// SMSLib for Java v3
// A Java API library for sending and receiving SMS via a GSM modem
// or other supported gateways.
// Web Site: http://www.smslib.org
//
// Copyright (C) 2002-2009, Thanasis Delenikas, Athens/GREECE.
// SMSLib is distributed under the terms of the Apache License version 2.0
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package org.smslib;

/**
 * Configuration/settings class. This class holds information about all the
 * parameters which affect SMSLib operation.
 */
public class Settings
{
	/**
	 * Size of scheduler thread pool.
	 */
	public int SCHEDULER_POOL = 10;

	/**
	 * Specifies whether the serial port flashing is disabled or enabled.
	 */
	public boolean SERIAL_NOFLUSH = false;

	/**
	 * Specifies whether the serial port will be polled or SMSLib will be
	 * notified by port interrupts.
	 */
	public boolean SERIAL_POLLING = false;

	/**
	 * Specifies the polling interval (milliseconds).
	 */
	public int SERIAL_POLLING_INTERVAL = 200;

	/**
	 * Specifies the serial ports' timeout (milliseconds).
	 */
	public int SERIAL_TIMEOUT = 15000;

	/**
	 * Specifies the serial ports' keep-alive interval (seconds).
	 */
	public int SERIAL_KEEPALIVE_INTERVAL = 60;

	/**
	 * Specifies the buffer size (bytes).
	 */
	public int SERIAL_BUFFER_SIZE = 16384;

	/**
	 * Wait time before clearing the queues (milliseconds).
	 */
	public int SERIAL_CLEAR_WAIT = 1000;

	/**
	 * Specifies whether hardware handshake should be enabled for outbound port
	 * traffic.
	 */
	public boolean SERIAL_RTSCTS_OUT = false;

	/**
	 * Specifies the number of retries the background queue should give to an
	 * outbound message before it classifies it as failed.
	 */
	public int QUEUE_RETRIES = 3;

	/**
	 * Wait time for generic AT commands (milliseconds).
	 */
	public int AT_WAIT = 200;

	/**
	 * Wait time after issuing a RESET command (milliseconds).
	 */
	public int AT_WAIT_AFTER_RESET = 10000;

	/**
	 * Wait time to give the modem after entring COMMAND mode (milliseconds).
	 */
	public int AT_WAIT_CMD = 1100;

	/**
	 * Wait time after issuing a SEND command (milliseconds).
	 */
	public int AT_WAIT_CGMS = 200;

	/**
	 * Wait time before retrying the network status command (milliseconds).
	 */
	public int AT_WAIT_NETWORK = 5000;

	/**
	 * Wait time after entering the PIN (milliseconds).
	 */
	public int AT_WAIT_SIMPIN = 5000;

	/**
	 * Wait time before retrying a failed CNMI command (milliseconds).
	 */
	public int AT_WAIT_CNMI = 3000;

	/**
	 * Number of retries for sending a message.
	 */
	public int OUTBOUND_RETRIES = 3;

	/**
	 * Wait time between retries for sending a message (milliseconds).
	 */
	public int OUTBOUND_RETRY_WAIT = 3000;

	/**
	 * Watchdog - SMSLib background monitoring thread interval (seconds).
	 */
	public int WATCHDOG_INTERVAL = 15;

	/**
	 * Sync message processor interval: If CNMI detection fails, SMSLib will
	 * emulate and still act as an asynchronous reader, by implementing a
	 * background polling technique and pushing the read messages via the
	 * callback methods.
	 */
	public int CNMI_EMULATOR_INTERVAL = 30;

	/**
	 * Mask or show the IMSI string.
	 */
	public boolean MASK_IMSI = true;

	public boolean DISABLE_CMTI = false;

	/**
	 * Should all defined gateways start up concurrently?
	 */
	public boolean CONCURRENT_GATEWAY_START = true;

	Settings()
	{
		if (System.getProperty("smslib.serial.noflush") != null) this.SERIAL_NOFLUSH = true;
		if (System.getProperty("smslib.serial.polling") != null) this.SERIAL_POLLING = true;
		if (System.getProperty("smslib.scheduler.pool") != null) this.SCHEDULER_POOL = Integer.parseInt(System.getProperty("smslib.scheduler.pool"));
		if (System.getProperty("smslib.serial.pollinginterval") != null) this.SERIAL_POLLING_INTERVAL = Integer.parseInt(System.getProperty("smslib.serial.pollinginterval"));
		if (System.getProperty("smslib.serial.timeout") != null) this.SERIAL_TIMEOUT = Integer.parseInt(System.getProperty("smslib.serial.timeout"));
		if (System.getProperty("smslib.serial.keepalive") != null) this.SERIAL_KEEPALIVE_INTERVAL = Integer.parseInt(System.getProperty("smslib.serial.keepalive"));
		if (System.getProperty("smslib.serial.buffer") != null) this.SERIAL_BUFFER_SIZE = Integer.parseInt(System.getProperty("smslib.serial.buffer"));
		if (System.getProperty("smslib.serial.clearwait") != null) this.SERIAL_CLEAR_WAIT = Integer.parseInt(System.getProperty("smslib.serial.clearwait"));
		if (System.getProperty("smslib.queue.retries") != null) this.QUEUE_RETRIES = Integer.parseInt(System.getProperty("smslib.queue.retries"));
		if (System.getProperty("smslib.outbound.retries") != null) this.OUTBOUND_RETRIES = Integer.parseInt(System.getProperty("smslib.outbound.retries"));
		if (System.getProperty("smslib.outbound.retrywait") != null) this.OUTBOUND_RETRY_WAIT = Integer.parseInt(System.getProperty("smslib.outbound.retrywait"));
		if (System.getProperty("smslib.at.wait") != null) this.AT_WAIT = Integer.parseInt(System.getProperty("smslib.at.wait"));
		if (System.getProperty("smslib.at.resetwait") != null) this.AT_WAIT_AFTER_RESET = Integer.parseInt(System.getProperty("smslib.at.resetwait"));
		if (System.getProperty("smslib.at.cmdwait") != null) this.AT_WAIT_CMD = Integer.parseInt(System.getProperty("smslib.at.cmdwait"));
		if (System.getProperty("smslib.at.cmgswait") != null) this.AT_WAIT_CGMS = Integer.parseInt(System.getProperty("smslib.at.cmgswait"));
		if (System.getProperty("smslib.at.networkwait") != null) this.AT_WAIT_NETWORK = Integer.parseInt(System.getProperty("smslib.at.networkwait"));
		if (System.getProperty("smslib.at.simpinwait") != null) this.AT_WAIT_SIMPIN = Integer.parseInt(System.getProperty("smslib.at.simpinwait"));
		if (System.getProperty("smslib.at.cnmiwait") != null) this.AT_WAIT_CNMI = Integer.parseInt(System.getProperty("smslib.at.cnmiwait"));
		if (System.getProperty("smslib.watchdog") != null) this.WATCHDOG_INTERVAL = Integer.parseInt(System.getProperty("smslib.watchdog"));
		if (System.getProperty("smslib.disable.concurrent.gateway.startup") != null) this.CONCURRENT_GATEWAY_START = false;
		// Temporary Switch - disable inbound message unsolicited notifications (CMTI).
		if (System.getProperty("smslib.nocmti") != null) this.DISABLE_CMTI = true;
	}
}

?? 快捷鍵說(shuō)明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號(hào) Ctrl + =
減小字號(hào) Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品进线69影院| 色偷偷88欧美精品久久久| 欧美日韩一区二区在线观看| 一区二区在线电影| 色综合久久中文综合久久97 | 26uuu色噜噜精品一区| 久草在线在线精品观看| 久久亚洲精精品中文字幕早川悠里| 九九视频精品免费| 中文字幕久久午夜不卡| 91浏览器入口在线观看| 一区二区三区不卡视频 | 婷婷成人综合网| 7878成人国产在线观看| 国模冰冰炮一区二区| 国产精品久久久久久久岛一牛影视| www.日韩在线| 无吗不卡中文字幕| 久久―日本道色综合久久| 99精品视频一区| 午夜久久福利影院| 26uuu国产在线精品一区二区| 久久久久久久综合日本| 99久久精品费精品国产一区二区| 亚洲www啪成人一区二区麻豆| 日韩欧美国产小视频| 国产高清久久久| 一区二区三区在线视频播放| 欧美一区二区三区免费观看视频 | 日欧美一区二区| 国产清纯白嫩初高生在线观看91 | 日本一区中文字幕| 欧美国产成人在线| 欧美老肥妇做.爰bbww| 国产高清一区日本| 日韩va亚洲va欧美va久久| 日本一区二区视频在线| 欧美日韩色一区| 成人免费视频国产在线观看| 午夜精品影院在线观看| 国产精品久久综合| 欧美一区二区三区人| 色婷婷国产精品综合在线观看| 麻豆精品视频在线观看视频| 亚洲欧美日韩综合aⅴ视频| 精品国产a毛片| 欧美精品第1页| 91美女片黄在线观看| 国产乱人伦精品一区二区在线观看| 一区二区三区免费观看| 国产精品网站一区| 精品国产凹凸成av人导航| 欧美日韩国产首页| 日本黄色一区二区| 成人福利视频在线看| 国内精品伊人久久久久av影院 | 日韩一区二区在线观看视频| 一本到一区二区三区| 国产成人综合网| 久久99精品国产.久久久久久| 一区二区三区在线播| 国产精品久久久久久亚洲伦| 久久久久久久久伊人| 精品少妇一区二区三区日产乱码| 欧美日韩成人综合天天影院| 一本到不卡精品视频在线观看| 国产精品一二三四区| 久久99精品久久久久久国产越南 | 99久久99久久精品免费观看| 国产剧情av麻豆香蕉精品| 老司机精品视频在线| 肉肉av福利一精品导航| 亚洲18影院在线观看| 亚洲一区二区av在线| 亚洲欧美日韩久久| 亚洲激情五月婷婷| 亚洲男女一区二区三区| 中文字幕佐山爱一区二区免费| 中日韩av电影| 国产精品福利av| 亚洲激情综合网| 午夜精品免费在线| 午夜免费久久看| 美女国产一区二区| 久久99国产精品久久| 国产福利视频一区二区三区| 国产经典欧美精品| 成人性生交大片| 日本韩国一区二区| 欧美日韩在线三级| 欧美片在线播放| 欧美mv和日韩mv国产网站| 久久亚洲影视婷婷| 国产精品激情偷乱一区二区∴| 亚洲欧洲99久久| 亚洲一区二区三区中文字幕| 日韩av中文字幕一区二区三区| 久久国产精品露脸对白| 国产精品一区二区三区四区| www.日本不卡| 亚洲激情综合网| 日韩高清不卡一区二区三区| 激情综合网激情| 99久久精品情趣| 91福利在线免费观看| 欧美老肥妇做.爰bbww| 久久欧美中文字幕| 亚洲一区二区3| 国模无码大尺度一区二区三区| 99久久亚洲一区二区三区青草 | 波多野结衣精品在线| 日本道免费精品一区二区三区| 欧美一区二区三区四区视频| 国产欧美一区二区精品婷婷| 夜夜嗨av一区二区三区四季av| 欧美a级理论片| 成人黄色大片在线观看| 欧美日韩国产一级二级| 国产欧美综合在线观看第十页| 亚洲精品你懂的| 美女在线一区二区| 色哟哟一区二区| 欧美精品一区男女天堂| 一区二区三区 在线观看视频| 国模冰冰炮一区二区| 欧美午夜片在线观看| 久久精品欧美日韩| 香蕉成人啪国产精品视频综合网| 国产大陆a不卡| 在线播放中文一区| 《视频一区视频二区| 久久99精品久久久久久| 91福利在线导航| 国产精品丝袜久久久久久app| 日韩电影在线观看网站| 97精品超碰一区二区三区| 精品国产污污免费网站入口| 一区二区三区四区不卡在线| 国产成人在线影院| 日韩欧美一区二区视频| 亚洲一区二区四区蜜桃| 不卡的av电影在线观看| 欧美大片免费久久精品三p| 亚洲午夜精品一区二区三区他趣| 国产成人精品免费视频网站| 日韩精品一区二区三区视频| 亚洲地区一二三色| 欧美在线小视频| 亚洲色图视频网站| 国产suv精品一区二区三区| 欧美大片免费久久精品三p| 日韩福利视频网| 欧美三区在线观看| 亚洲精品福利视频网站| 91在线观看高清| 国产精品久久一卡二卡| 国产不卡一区视频| 久久精品免视看| 国产高清久久久久| 国产丝袜美腿一区二区三区| 久久99国产精品久久99果冻传媒| 91精选在线观看| 五月激情综合网| 91精品国产综合久久福利软件| 亚洲一级二级三级| 欧美在线免费观看视频| 亚洲影视在线播放| 精品污污网站免费看| 亚洲成人综合网站| 欧美日韩不卡一区| 男人的天堂久久精品| 日韩你懂的在线观看| 国模无码大尺度一区二区三区| 精品理论电影在线观看| 韩日精品视频一区| 久久精品欧美一区二区三区不卡| 国产精品99久久久久久久女警| 久久九九久精品国产免费直播| 国产成人综合网站| 亚洲婷婷综合色高清在线| 91在线小视频| 亚洲激情自拍偷拍| 7777精品久久久大香线蕉| 美女爽到高潮91| 久久人人97超碰com| 亚洲国产综合91精品麻豆| 欧美精品一区二区在线观看| 亚洲图片激情小说| 一区二区三区四区在线| 久久久精品国产免费观看同学| 国产一区二区三区黄视频| 国产欧美一区二区精品久导航 | 欧美videos中文字幕| 日本韩国欧美国产| 亚洲国产婷婷综合在线精品| 在线播放91灌醉迷j高跟美女 | 国产成人精品一区二区三区网站观看| 韩国中文字幕2020精品| 国产精品久久久久久久久果冻传媒| 日韩欧美亚洲一区二区|