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

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

?? configurator.java

?? jxta平臺的開發(fā)包
?? JAVA
?? 第 1 頁 / 共 5 頁
字號:
     * A {@link net.jxta.ext.config.Transport} is a networking binding.     *     * @return      {@link java.util.List} of {@link net.jxta.ext.config.Transport}     */        public List getTransports() {        return this.transports != null ?            (List)((ArrayList)this.transports).clone() :            Collections.EMPTY_LIST;    }        /**     * Clear and resets the {@link net.jxta.ext.config.Transport} value.     *     * @param   transport   {@link net.jxta.ext.config.Transport} value.     */        public void setTransport(Transport transport) {        List t = new ArrayList();                t.add(transport);                setTransports(t);    }        /**     * Clears and resets the {@link net.jxta.ext.config.Transport}.     *     * @param   transports      {@link net.jxta.ext.config.Transport}      */        public void setTransports(List transports) {        if (this.transports != null) {            this.transports.clear();        }                addTransports(transports);    }        /**     * Add a {@link net.jxta.ext.config.Transport}.     *     * @param   transport       {@link net.jxta.ext.config.Transport}     */        public void addTransport(Transport transport) {        addTransports(Collections.singletonList(transport));    }        /**     * Adds a {@link java.util.List} of {@link net.jxta.ext.config.Transport}.     *     * @param   transports      {@link net.jxta.ext.config.Transport}     */        public void addTransports(List transports) {        for (Iterator i =  transports.iterator();            i.hasNext(); ) {            Transport t = (Transport)i.next();                        if (t != null &&                (this.transports == null ||                ! this.transports.contains(t))) {                if (this.transports == null) {                    this.transports = new ArrayList();                }                                this.transports.add(t);            }        }    }        /**     * Remove a {@link net.jxta.ext.config.Transport}.     *     * @param   transport   {@link net.jxta.ext.config.Transport}     * @return              removed {@link net.jxta.ext.config.Transport}     */        public Transport removeTransport(Transport transport) {        Object o = null;                if (this.transports != null) {            int i = this.transports.indexOf(transport);                        if (i > -1) {                o = this.transports.remove(i);                                if (this.transports.size() == 0) {                    this.transports = null;                }            }        }                return (Transport)o;    }        /**     * Remove all {@link net.jxta.ext.config.Transport}.     */        public void clearTransports() {        if (this.transports != null) {            this.transports.clear();                        this.transports = null;        }    }        // xxx: ?is this needed?    /**     * Accessor to the security enabler.     *     * <p>The security enabler specifies whether or not security is enabled.      *     * @return      security enabler     */        public boolean isSecurity() {        return this.isSecurity;    }    /**     * Specify the security enabler value.     *     * @param   isEnabled    the security enabler value     */        public void setSecurity(boolean isEnabled) {        this.isSecurity = isEnabled;    }    /**     * Accessor to the principal attribute.     *     * <p>The principal is used to specify the associated {@link java.net.cert.Certificate}     * principal.     *     * @return      the configuration principal     */        public String getPrincipal() {        return this.principal;    }        /**     * Accessor to the password information.     *     * @return      the password     */        public String getPassword() {        return this.password;    }        /**     * Specify the configuration principal and password.     *     * @param   principal   configuration principal     * @param   password    configuration password     */       public void setSecurity(String principal, String password) {        this.principal = (principal != null &&            principal.trim().length() > 0 ? principal.trim() : null);        this.password = (password != null &&            password.trim().length() > 0 ? password.trim() : null);    }        /**     * Accessor to the Root Certificate address.     *     * <p>The Root Certificate is used to sign all subsequent certificates.     *     * @return      the Root Certificate address     */        public URI getRootCertificateAddress() {        return this.rootCertificateAddress;    }        /**     * Specify the Root Certificate address.     *     * @param   rootCertificateAddress  the Root Certificate address     */        public void setRootCertificateAddress(URI rootCertificateAddress) {        this.rootCertificateAddress = rootCertificateAddress;    }        /**     * Accessor to the Root Certificate.     *     * <p>The Root Certificate is used to sign all subsequent cerficiates.     *     * @return      the Root Certificate     */        public Certificate getRootCertificate() {        return this.pse.getCertificate();    }        /**     * Accessor to the Base64 encoded Root Certificate.     *     * @return      Base64 encoded Root Certificate     */        public String getRootCertificateBase64() {        String s = null;                try {            s = this.pse.getCert();        } catch (Exception e) {            if (LOG.isEnabledFor(Level.ERROR)) {                LOG.error("can't get root cert");            }        }                return s;    }        /**     * Specify the Root Certificate.     *     * @param   rootCertificate     the Root Certificate     */        public void setRootCertificate(Certificate rootCertificate) {        this.pse.setCertificate((X509Certificate) rootCertificate);    }        /**     * Specify the Root Certificate in Base64 encoded format.     *     * @param   rootCertificate     the Root Certificate in Base64 encoded format.     */        public void setRootCertificateBase64(String rootCertificate) {        if (rootCertificate != null) {            this.pse.setCert(rootCertificate);        }    }        /**     * Accessor to the {@link net.jxta.ext.config.ProxyAddress}.     *     * <p>A {@link net.jxta.ext.config.ProxyAddress} is used to optionally negotiate HTTP communications.     *     * @return      {@link net.jxta.ext.config.ProxyAddress} address as a {link java.net.URI}     */        public URI getPeerProxyAddress() {        return this.peerProxy;    }        /**     * Specify a {@link net.jxta.ext.config.ProxyAddress}.     *     * @param  peerProxyAddress             the {@link net.jxta.ext.config.ProxyAddress} address     * @throws     ConfiguratorException    if the address scheme is not "HTTP"     *                                      or the port is invalid     */        public void setPeerProxyAddress(URI peerProxyAddress)    throws ConfiguratorException {        if (Util.validateAddress(peerProxyAddress, true).trim().length() == 0) {            this.peerProxy = peerProxyAddress;        } else {            throw new ConfiguratorException("invalid proxy",                new IllegalArgumentException("invalid proxy uri: " +                    peerProxyAddress));        }    }        /**     * Accessor to the Endpoint outgoing queue size.     *     * <p>A queue size specifies the overall message buffer size when exceeded     * messages are dropped.     *     * @return      Endpoint queue size     */        public int getEndpointOutgoingQueueSize() {        return this.endpointQueueSize;    }        /**     * Specify the outgoing Endpoint queue size.     *     * @param   size   the outgoing Endpoint queue size     */        public void setEndpointOutgoingQueueSize(int size) {        this.endpointQueueSize = size;    }        /**     * Accessor to the {@link net.jxta.impl.proxy.ProxyService} enabler.     *     * <p>The {@link net.jxta.impl.proxy.ProxyService} enables gatewaying primarily     * for use with limited devices.     *     * @return      the {@link net.jxta.impl.proxy.ProxyService}     */        public boolean isProxy() {        return this.isProxyEnabled;    }        /**     * Specify the {@link net.jxta.impl.proxy.ProxyService} enabler.     *     * @param  isEnabled    the {@link net.jxta.impl.proxy.ProxyService} enabler     */        public void setProxy(boolean isEnabled) {        this.isProxyEnabled = isEnabled;    }        /**     * Accessor to the configuration Infrastructure {@link net.jxta.peergroup.PeerGroupID}.     *     * <p>A {@link net.jxta.peergroup.PeerGroupID} used to specify unique networks.     *     * @return      {@link net.jxta.peergroup.PeerGroupID}     */     public PeerGroupID getInfrastructurePeerGroupId() {        return this.infrastructureGroupId;    }    /**     * Specify the Infrastructure {@link net.jxta.peergroup.PeerGroupID}.     *     * @param   pgid  {@link net.jxta.peergroup.PeerGroupID}     */    public void setInfrastructurePeerGroupId(PeerGroupID pgid) {        this.infrastructureGroupId = pgid;    }    /**     * Accessor to the Infrastructure {@link net.jxta.peergroup.PeerGroup} name.     *     * <p>A Infrastructure PeerGroup name specifies a toolable meta value.     *     * @return      PeerGroup name     */    public String getInfrastructurePeerGroupName() {        return this.infrastructureGroupName;    }    /**     * Specify the Infrastructure {@link net.jxta.peergroup.PeerGroup} name.     *     * @param   name    PeerGroup name     */    public void setInfrastructurePeerGroupName(String name) {        name = name != null ? name.trim() : name;                this.infrastructureGroupName = name != null && name.length() > 0 ?            name : null;    }    /**     * Accessor to the Infrastructure {@link net.jxta.peergroup.PeerGroup} description.     *     * <p>A Infrastructure PeerGroup description specifies a toolable meta value.     *     * @return      PeerGroup description     */    public String getInfrastructurePeerGroupDescription() {        return this.infrastructureGroupDescription;    }    /**     * Specify the Infrastructure {@link net.jxta.peergroup.PeerGroup} description.     *     * @param   description    PeerGroup description     */    public void setInfrastructurePeerGroupDescription(String description) {        description = description != null ? description.trim() : description;                this.infrastructureGroupDescription = description != null &&            description.length() > 0 ? description : null;    }    /**     * Accessor to the RendezVous Bootstrap address.     *     * <p>A RendezVous Bootstrap address is used to establish initial, aka     * "seeding," RendezVous addresses, in the form of {@link java.net.URI}.     *     * @return      the RendezVous Bootstrap address in the form of a     *              {@link java.net.URI}     */        public URI getRendezVousBootstrapAddress() {        //return this.rendezVousBootstrap;        URI[] u = this.rdvConfig != null ?

?? 快捷鍵說明

復(fù)制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
久久久久国产成人精品亚洲午夜| 96av麻豆蜜桃一区二区| 69成人精品免费视频| 亚洲不卡在线观看| 欧美日高清视频| 一级做a爱片久久| 欧日韩精品视频| 亚洲高清久久久| 666欧美在线视频| 麻豆成人av在线| 欧美成人午夜电影| 国产精品资源站在线| 久久久久久**毛片大全| 粉嫩高潮美女一区二区三区| 国产欧美一区视频| 成+人+亚洲+综合天堂| 成人免费视频免费观看| 亚洲四区在线观看| 69堂精品视频| 国产毛片一区二区| 亚洲免费看黄网站| 91精品综合久久久久久| 蜜臀a∨国产成人精品| 久久精品人人做| 在线一区二区三区| 国产美女精品人人做人人爽| 国产精品国产三级国产有无不卡| 色呦呦国产精品| 美女一区二区久久| 国产精品私房写真福利视频| 欧美午夜在线观看| 国产一区二区在线电影| 玉足女爽爽91| 久久人人超碰精品| 欧美日韩一区二区三区视频| 国产一区二区精品久久99| 亚洲乱码日产精品bd| 日韩精品一区国产麻豆| 91免费看`日韩一区二区| 日本最新不卡在线| 亚洲伦在线观看| 久久午夜国产精品| 欧美放荡的少妇| 一本久久a久久免费精品不卡| 蜜臀av一区二区在线观看 | 99re66热这里只有精品3直播 | 国产精品主播直播| 婷婷国产在线综合| 成人伦理片在线| 精品一区二区三区免费播放 | 欧美剧在线免费观看网站| 国产成人精品午夜视频免费| 蜜臀av国产精品久久久久| 亚洲 欧美综合在线网络| 国产精品久久午夜夜伦鲁鲁| 久久美女高清视频| 精品欧美一区二区三区精品久久| 91福利精品视频| 94色蜜桃网一区二区三区| 粉嫩蜜臀av国产精品网站| 国产在线视频一区二区三区| 蜜臀a∨国产成人精品| 日本美女视频一区二区| 日本午夜精品一区二区三区电影 | 国产精品嫩草影院com| 26uuu国产一区二区三区| 精品久久久三级丝袜| 精品少妇一区二区三区免费观看| 制服丝袜成人动漫| 欧美一区二区在线免费观看| 欧美一级电影网站| 日韩你懂的在线观看| 久久久噜噜噜久久中文字幕色伊伊| 欧美精品一区二区不卡| 欧美国产综合一区二区| 国产精品福利av| 亚洲精品成人精品456| 亚洲成av人综合在线观看| 日本不卡高清视频| 国产成人免费9x9x人网站视频| 成人v精品蜜桃久久一区| 欧洲中文字幕精品| 日韩精品一区在线观看| 中文字幕av一区二区三区高| 亚洲一区二区三区四区在线观看| 肉色丝袜一区二区| 国产精品18久久久久| 99精品视频免费在线观看| 欧美性感一类影片在线播放| 精品久久久久久久久久久久久久久 | 青青草原综合久久大伊人精品优势| 黄色小说综合网站| 欧美日韩一区不卡| 国产精品蜜臀在线观看| 日韩av电影免费观看高清完整版 | 亚洲成人一区二区在线观看| 国产乱码精品一区二区三区av| 99久久99久久免费精品蜜臀| 日韩一区二区三区观看| 亚洲欧美国产77777| 久久精品噜噜噜成人88aⅴ| 91色在线porny| 国产亚洲一区二区三区四区| 视频一区国产视频| 91免费看视频| 日本一区二区三区国色天香| 亚洲国产日韩精品| 91性感美女视频| 欧美国产1区2区| 精品在线亚洲视频| 欧美一区二区视频在线观看| 亚洲精品视频自拍| 91在线一区二区三区| 中文字幕av免费专区久久| 国产真实乱子伦精品视频| 欧美精品视频www在线观看| 亚洲一区二区三区四区不卡| 99久久精品99国产精品| 国产精品国产成人国产三级| 国产成人av一区二区三区在线| 欧美大白屁股肥臀xxxxxx| 午夜精品在线视频一区| 欧美日韩一区视频| 一区二区三区精品视频| 97精品国产97久久久久久久久久久久| 久久精品视频免费观看| 成人午夜免费电影| 国产精品毛片无遮挡高清| 国产成人精品影视| 国产精品麻豆一区二区| 99久久精品免费精品国产| 亚洲女与黑人做爰| 欧美三级欧美一级| 美女视频黄频大全不卡视频在线播放 | 偷拍一区二区三区四区| 日韩免费高清电影| 国产99精品国产| 亚洲最大色网站| 欧美tk丨vk视频| 成人一区在线观看| 亚洲乱码一区二区三区在线观看| 欧美午夜视频网站| 久久99精品一区二区三区| 国产精品久久久久影院亚瑟| 色哟哟亚洲精品| 老司机精品视频线观看86| 中文字幕精品一区二区三区精品 | 亚洲同性同志一二三专区| 欧美日韩另类国产亚洲欧美一级| 另类的小说在线视频另类成人小视频在线 | 午夜精品影院在线观看| 国产精品剧情在线亚洲| 欧美另类高清zo欧美| 91免费观看在线| 91麻豆精品国产91久久久更新时间 | 国产一区二区三区不卡在线观看| 美女脱光内衣内裤视频久久网站 | 中文字幕色av一区二区三区| 麻豆91精品视频| 欧美视频在线一区| 亚洲午夜私人影院| 久久美女高清视频| 中文字幕第一区综合| 国产精品天干天干在线综合| 欧美国产97人人爽人人喊| 日本一区二区三区免费乱视频| 欧美韩国日本综合| 日韩美女视频19| 亚洲第一激情av| 美腿丝袜一区二区三区| 国产精品一区二区视频| 成人理论电影网| 欧美网站一区二区| 欧美成人女星排名| 国产精品麻豆久久久| 亚洲一区二区av电影| 秋霞av亚洲一区二区三| 国产精品一二三区在线| 色综合久久天天综合网| 在线播放国产精品二区一二区四区| 51精品久久久久久久蜜臀| 欧美日韩极品在线观看一区| 欧美在线视频日韩| 欧美精品高清视频| 欧美成人综合网站| 欧美激情在线看| 亚洲青青青在线视频| 亚洲在线免费播放| 视频一区在线视频| 久久99精品久久久久久久久久久久| 激情综合亚洲精品| 99国产精品久| 9191成人精品久久| 国产三级一区二区三区| 日韩伦理av电影| 日韩成人精品在线| 成人午夜电影久久影院| 欧美系列日韩一区| 久久夜色精品国产噜噜av| 亚洲欧美日韩国产手机在线 |