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

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? configurator.java

?? jxta平臺的開發包
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
    /**     * Clears and resets the RendezVous addresses.     *     * @param      rendezVous               RendezVous addresses      * @throws     ConfiguratorException    {@link net.jxta.exception.ConfigurationException}     *                                      chained list of configuration errors     */        public void setRendezVous(List rendezVous)    throws ConfiguratorException {        this.rdvConfig.clearSeedRendezvous();        addRendezVous(rendezVous);    }        /**     * Add a RendezVous address.     *     * @param       rendezVous              RendezVous address     * @throws      ConfiguratorException   {@link net.jxta.exception.ConfiguratorException}     *                                      chained list of configuration errors     */        public void addRendezVous(URI rendezVous)    throws ConfiguratorException {        addRendezVous(Collections.singletonList(rendezVous));    }        /**     * Adds a {@link java.util.List} of RendezVous addresses.     *     * @param       rendezVous              RendezVousService addresses     * @throws      ConfiguratorException   {@link net.jxta.exception.ConfiguratorException}     *                                      chained list of configuration errors     */        public void addRendezVous(List rendezVous)    throws ConfiguratorException {        for (Iterator r = rendezVous.iterator(); r.hasNext();) {            URI u = (URI)r.next();                        if (Util.validateAddress(u, false).trim().length() == 0) {                this.rdvConfig.addSeedRendezvous(u);            } else {                throw new ConfiguratorException("invalid address: " + u);            }        }    }        /**     * Remove a RendezVous address.     *     * @param   rendezVous  RendezVousService address     * @return              removed RendezVous address     */        public URI removeRendezVous(URI rendezVous) {        URI u = null;                if (this.rdvConfig != null) {            this.rdvConfig.removeSeedRendezvous(rendezVous);                        u = rendezVous;        }                return u;    }        /**     * Remove all RendezVous addresses.     */        public void clearRendezVous() {        if (this.rdvConfig != null) {            this.rdvConfig.clearSeedRendezvous();        }    }        /**     * Accessor to the RendezVous AutoStart enabler.     *     * <p>The AutoStart feature allows the JXTA Peer to opt to variably provision     * the {@link net.jxta.rendezvous.RendezVousService} in the event no other,     * or not enough, RendezVous are found within the specified time interval.     *     * @deprecated  use {@link net.jxta.ext.config.Configurator#getRendezVousAutoStart()}     * @return      the RendezVous AutoStart value     */        public boolean isRendezVousAutoStart() {        return (this.rdvConfig.getAutoRendezvousCheckInterval() != 0);    }        /**     * Accessor to the RendezVous AutoStart value measured in milliseconds.     *     * <p>The RendezVous AutoStart feature allows the JXTA instance to opt to     * variably provision the {@link net.jxta.rendezvous.RendezVousService}     * in the event no other, or not enough, RendezVous are found within the     * specified time interval.     *     * @return      RendezVous AutoStart value in milliseconds     */        public long getRendezVousAutoStart() {        return this.rdvConfig.getAutoRendezvousCheckInterval();    }        /**     * Specifies the RendezVous AutoStart value in milliseconds.     *     * @param   autoStart   RendezVous AutoStart value     */        public void setRendezVousAutoStart(long autoStart) {        this.rdvConfig.setAutoRendezvousCheckInterval(autoStart);    }        /**     * Accessor to the Relay Service enabler which indicates as to whether     * or not the to be configured instance is to provision the Relay Service.     *     * @return      Relay enabler     */        public boolean isRelay() {        return this.relayConfig.isClientEnabled() ||	    this.relayConfig.isServerEnabled();    }        /**     * Specify the Relay enabler.     *     * @param   isEnabled    Relay enabler     */        public void setRelay(boolean isEnabled) {//         throw new UnsupportedOperationException("this doesn't work");    }        /**     * Accessor to the configured Relay addresses in the form of {@link java.net.URI}.     *     * @return      Relays as a {@link java.util.List} of {@link java.net.URI}     */        public List getRelays() {        List allSeeds = Arrays.asList( this.relayConfig.getSeedRelays() );        List result = new ArrayList(allSeeds.size());                for (Iterator si = allSeeds.iterator(); si.hasNext(); ) {            try {                result.add(new URI(si.next().toString()));            } catch(URISyntaxException ignored) {            }        }                return result;    }        /**     * Clears and resets the Relay address.     *     * @param       relay                   Relay address     * @throws      ConfiguratorException   {@link net.jxta.exception.ConfiguratorException}     *                                      chained list of configuration errors     */        public void setRelay(URI relay)    throws ConfiguratorException {        this.relayConfig.clearSeedRelays();        this.relayConfig.addSeedRelay(relay.toString());    }        /**     * Clears and resets the Relay addresses.     *     * @param      relays                   Relay addresses      * @throws     ConfiguratorException    {@link net.jxta.exception.ConfigurationException}     *                                      chained list of configuration errors     */        public void setRelays(List relays)    throws ConfiguratorException {        this.relayConfig.clearSeedRelays();                addRelays(relays);    }        /**     * Add a Relay address.     *     * @param       relay                   Relay address     * @throws      ConfiguratorException   {@link net.jxta.exception.ConfiguratorException}     *                                      chained list of configuration errors     */        public void addRelay(URI relay)    throws ConfiguratorException {        try {            this.relayConfig.addSeedRelay(relay.toString());        } catch (Exception all) {            throw new ConfiguratorException("Bad relay", all);        }    }        /**     * Adds a {@link java.util.List} of Relay addresses.     *     * @param       relays                  Relay addresses     * @throws      ConfiguratorException   {@link net.jxta.exception.ConfiguratorException}     *                                      chained list of configuration errors     */        public void addRelays(List relays)    throws ConfiguratorException {        for (Iterator ri = relays.iterator(); ri.hasNext(); ) {            addRelay((URI)ri.next());        }    }        // xxx: ?we can't remove a relay?    /**     * Remove a Relay address.     *     * @param   relay       Relay address     * @return              removed Relay address     */        public URI removeRelay(URI relay) {        throw new UnsupportedOperationException("this doesn't work");    }        /**     * Remove all Relay addresses.     */         public void clearRelays() {        if (this.relayConfig != null) {        this.relayConfig.clearSeedRelays();    }    }        /**     * Accessor to Relay incoming attribute.     *     * <p>An incoming attribute indicates the associated service accepts inbound     * communications.     *     * @return      the Relay incoming attribute     */        public boolean isRelayIncoming() {        return this.relayConfig.isServerEnabled();    }        /**     * Specify the Relay incoming attribute.     *     * @param   isEnabled   Relay incoming attribute     */        public void setRelayIncoming(boolean isEnabled) {        this.relayConfig.setServerEnabled( isEnabled );    }        /**     * Accessor to the Relay incoming maximum connection attribute.     *     * <p>A incoming maximum specifies the amount of maximum incoming connections     * are allowed.     *     * @return      the Relay maximum incoming connection attribute     */        public int getRelayIncomingMaximum() {        return this.relayConfig.getMaxClients( );    }        /**     * Specify the Relay maximum incoming connection attribute.     *     * @param   maximumIncoming     Relay maximum incoming attribute     */        public void setRelayIncomingMaximum(int maximumIncoming) {        this.relayConfig.setMaxClients( maximumIncoming );    }        /**     * Accessor to the Relay incoming lease attribute in milliseconds.     *     * <p>A incoming lease specifies the time, in milliseconds, with which Relay     * leases are held.     *     * @return      the Relay incoming lease attribute in milliseconds.     */        public long getRelayIncomingLease() {        return this.relayConfig.getServerLeaseDuration();    }        /**     * Specify the Relay incoming lease attribute in milliseconds.     *     * @param   incomingLease   the Relay incoming lease attribute in milliseconds.     */        public void setRelayIncomingLease(long incomingLease) {        this.relayConfig.setServerLeaseDuration( incomingLease );    }        /**     * Accessor to the Relay outgoing attribute.     *     * <p>An outgoing attribute indicates the associated service initiates outbound     * communications.     *     * @return      Relay outgoing attribute     */        public boolean isRelayOutgoing() {        return this.relayConfig.isClientEnabled();    }        /**     * Specify the Relay outgoing attribute.     *     * @param   isEnabled   Relay outgoing attribute     */        public void setRelayOutgoing(boolean isEnabled) {        this.relayConfig.setClientEnabled( isEnabled );    }        /**     * Accessor to the Relay outgoing maximum connection attribute.     *     * <p>A outgoing maximum specifies the amount of maximum outgoing connections     * are allowed.     *     * @return      the Relay maximum outgoing connection attribute     */        public int getRelayOutgoingMaximum() {        return this.relayConfig.getMaxRelays();    }        /**     * Specify the Relay maximum outgoing connection attribute.     *     * @param   maximumOutgoing     Relay maximum outgoing attribute     */        public void setRelayOutgoingMaximum(int maximumOutgoing) {        this.relayConfig.setMaxRelays( maximumOutgoing );    }        /**     * Accessor to the Relay outgoing lease attribute in milliseconds.     *     * <p>A outgoing lease specifies the time, in milliseconds, with which Relay     * leases are held.     *     * @return      the Relay outgoing lease attribute in milliseconds.     */        public long getRelayOutgoingLease() {        return this.relayConfig.getClientLeaseDuration();    }        /**     * Specify the Relay outgoing lease attribute in milliseconds.     *     * @param   outgoingLease   the Relay outgoing lease attribute in milliseconds.     */        public void setRelayOutgoingLease(long outgoingLease) {        this.relayConfig.setClientLeaseDuration( outgoingLease );    }        /**     * Accessor to the Relay queue size.     *     * <p>A queue size specifies the overall message buffer size when exceeded     * messages are dropped.     *     * @return      Relay queue size     */        public int getRelayQueueSize() {        return this.relayConfig.getClientMessageQueueSize();    }         /**     * Specify the Relay queue size.     *     * @param   queueSize   the Relay queue size     */        public void setRelayQueueSize(int queueSize) {        this.relayConfig.setClientMessageQueueSize( queueSize );    }        /**     * Accessor to the {@link net.jxta.ext.config.Transport}.     *

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
韩国精品一区二区| 亚洲精品成人a在线观看| 99久久99久久久精品齐齐 | 国产精品午夜电影| 欧美久久久久久久久中文字幕| 国产精品一区一区三区| 青娱乐精品在线视频| ...xxx性欧美| 国产亚洲综合av| 欧美一区二区三区影视| 色婷婷久久综合| 丰满放荡岳乱妇91ww| 韩国三级中文字幕hd久久精品| 一区二区三区在线观看国产| 国产精品免费观看视频| 久久久三级国产网站| 欧美一级在线免费| 欧美日韩国产一级| 91久久国产最好的精华液| 成人一区二区三区视频在线观看| 狠狠久久亚洲欧美| 日韩电影在线免费看| 亚洲女同一区二区| 日韩美女精品在线| 欧美激情一区在线观看| 亚洲精品一区在线观看| 日韩一二三区视频| 91精品国产色综合久久不卡电影 | 国产精品嫩草99a| 精品国产99国产精品| 欧美一区二区三区日韩视频| 欧美精品久久99| 精品视频免费在线| 欧美日韩视频一区二区| 欧美在线免费播放| 在线欧美一区二区| 欧美综合一区二区| 欧美性大战久久久久久久| 91精品福利视频| 色噜噜狠狠一区二区三区果冻| 色综合咪咪久久| 91福利国产精品| 欧美三级三级三级爽爽爽| 色天使色偷偷av一区二区| 欧美亚洲高清一区二区三区不卡| 在线观看日产精品| 欧美人伦禁忌dvd放荡欲情| 3d动漫精品啪啪一区二区竹菊 | 亚洲免费av在线| 一区二区三区国产| 五月激情六月综合| 三级在线观看一区二区 | 免费看黄色91| 国产精品影视网| 国产99久久久精品| 99re这里只有精品6| 91黄色激情网站| 欧美一区日本一区韩国一区| 欧美v国产在线一区二区三区| 337p日本欧洲亚洲大胆精品| 欧美激情一区二区三区蜜桃视频 | 国产一区二区三区观看| 粉嫩av一区二区三区在线播放| www.日本不卡| 色婷婷狠狠综合| 3atv在线一区二区三区| 久久久久久久免费视频了| 国产女人aaa级久久久级 | 久久爱另类一区二区小说| 国精产品一区一区三区mba视频| 美女视频黄久久| 国产成人精品在线看| 欧美亚洲国产怡红院影院| 日韩一区二区三区av| 欧美国产精品一区二区| 亚洲国产中文字幕在线视频综合| 青娱乐精品视频| 99久久免费视频.com| 欧美成人午夜电影| 中文字幕精品在线不卡| 久久无码av三级| 久久久www免费人成精品| 国产精品免费视频观看| 欧美日韩综合在线免费观看| 欧美激情一二三区| 日韩欧美中文字幕公布| 亚洲免费观看视频| 激情久久五月天| 亚洲在线视频一区| 国产在线视视频有精品| 91原创在线视频| 欧美v日韩v国产v| 亚洲成在线观看| 久久这里只有精品首页| 国产精品自拍网站| 91麻豆精品91久久久久久清纯 | 色噜噜狠狠成人网p站| 国产午夜亚洲精品不卡 | 91在线观看免费视频| 久久色中文字幕| 午夜精品久久久久久| 欧美色网站导航| 日韩一区二区三区三四区视频在线观看 | 老司机精品视频线观看86 | 香蕉久久一区二区不卡无毒影院| 国产欧美一区二区三区在线老狼| 国内精品视频666| 亚洲高清不卡在线| 一本到不卡精品视频在线观看 | 欧美日本高清视频在线观看| 亚洲日本在线看| 久久婷婷久久一区二区三区| 精久久久久久久久久久| 亚洲一级二级在线| 天天综合色天天综合色h| 色哟哟欧美精品| 粉嫩av一区二区三区在线播放| 精品久久久久av影院| 精品一区二区三区久久久| 一区二区三区四区精品在线视频 | 亚洲精品中文字幕乱码三区| 精品日韩在线观看| 韩国精品一区二区| 337p日本欧洲亚洲大胆色噜噜| 欧美一区二区视频在线观看 | 欧美天堂亚洲电影院在线播放| 99久久er热在这里只有精品66| 亚洲黄色性网站| 91丨porny丨户外露出| 成人高清伦理免费影院在线观看| 激情小说欧美图片| 成人欧美一区二区三区小说| 国产欧美精品日韩区二区麻豆天美| 国产婷婷色一区二区三区四区| 成人高清伦理免费影院在线观看| 精品一区精品二区高清| 亚洲mv在线观看| 一区二区免费在线播放| 欧美在线视频不卡| 一本一道综合狠狠老| 成人免费视频免费观看| 日韩avvvv在线播放| 理论电影国产精品| 国内精品伊人久久久久av影院| 精品一区二区三区在线观看国产 | 国产欧美一区二区三区鸳鸯浴 | 成人中文字幕电影| 不卡的看片网站| 欧洲日韩一区二区三区| 在线观看视频一区二区欧美日韩| 欧美女孩性生活视频| 欧美日韩另类一区| 欧美另类z0zxhd电影| 亚洲免费视频中文字幕| 一区二区视频在线| 性久久久久久久| 国产精品系列在线观看| 成人免费毛片a| 国产乱子伦视频一区二区三区 | 欧美在线视频全部完| 亚洲成人动漫在线观看| 日本在线不卡一区| 国产精品资源网| 91国偷自产一区二区开放时间| 日韩一区二区精品葵司在线| 国产午夜精品一区二区三区四区| 亚洲丰满少妇videoshd| 奇米影视在线99精品| 国产精品88av| 中文字幕亚洲一区二区va在线| 亚洲一级电影视频| 欧美日本视频在线| 欧美精品一区二区三| 夜夜嗨av一区二区三区四季av| 在线观看国产91| 久久欧美一区二区| 亚洲一级二级三级在线免费观看| 91精品国产乱| 国产精品你懂的| 国产精品久久久久久久久搜平片| 成av人片一区二区| 国产福利电影一区二区三区| 一区二区三区免费网站| 亚洲欧洲美洲综合色网| 欧美国产一区在线| 美腿丝袜亚洲综合| 色素色在线综合| 欧美一区二区三区在| 三级一区在线视频先锋 | 亚洲欧洲日本在线| 色综合 综合色| 亚洲午夜在线观看视频在线| 中文字幕日韩一区| 成人综合在线视频| 91精品国产综合久久福利| 一区二区三区欧美| 亚洲线精品一区二区三区八戒| 丁香网亚洲国际| 6080yy午夜一二三区久久| 久久综合九色综合97婷婷女人 |