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

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

?? notificationchannelconfiguration.java

?? 關于 RFID 讀寫器的相關內容
?? JAVA
字號:
/*
 * Copyright (C) 2007 ETH Zurich
 *
 * This file is part of Fosstrak (www.fosstrak.org).
 *
 * Fosstrak is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License version 2.1, as published by the Free Software Foundation.
 *
 * Fosstrak is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Fosstrak; if not, write to the Free
 * Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
 * Boston, MA  02110-1301  USA
 */

//
// This file was generated by the JavaTM Architecture for XML Binding(JAXB) Reference Implementation, v2.0-b26-ea3 
// See <a href="http://java.sun.com/xml/jaxb">http://java.sun.com/xml/jaxb</a> 
// Any modifications to this file will be lost upon recompilation of the source schema. 
// Generated on: 2006.07.21 at 05:25:46 PM CEST 
//


package org.fosstrak.reader.rp.proxy.configurator;

import java.util.ArrayList;
import java.util.List;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlElement;
import javax.xml.bind.annotation.XmlType;


/**
 * <p>Java class for NotificationChannelConfiguration complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="NotificationChannelConfiguration">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;sequence>
 *         &lt;element name="notificationChannelHost" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *         &lt;element name="notificationChannelPort" type="{http://www.w3.org/2001/XMLSchema}int"/>
 *         &lt;element name="transportProtocol" type="{}TransportProtocol"/>
 *         &lt;element name="notificationChannelMode" type="{}NotificationChannelMode"/>
 *         &lt;element name="sources" minOccurs="0">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;sequence maxOccurs="unbounded">
 *                   &lt;element name="source" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                 &lt;/sequence>
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *         &lt;element name="notificationTriggers" minOccurs="0">
 *           &lt;complexType>
 *             &lt;complexContent>
 *               &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *                 &lt;sequence maxOccurs="unbounded">
 *                   &lt;element name="triggerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
 *                 &lt;/sequence>
 *               &lt;/restriction>
 *             &lt;/complexContent>
 *           &lt;/complexType>
 *         &lt;/element>
 *         &lt;element name="dataSelector" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
 *       &lt;/sequence>
 *       &lt;attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "NotificationChannelConfiguration", propOrder = {
    "notificationChannelHost",
    "notificationChannelPort",
    "transportProtocol",
    "notificationChannelMode",
    "sources",
    "notificationTriggers",
    "dataSelector"
})
public class NotificationChannelConfiguration {

    protected String notificationChannelHost;
    @XmlElement(type = Integer.class)
    protected int notificationChannelPort;
    protected TransportProtocol transportProtocol;
    protected NotificationChannelMode notificationChannelMode;
    protected Sources sources;
    protected NotificationTriggers notificationTriggers;
    protected String dataSelector;
    @XmlAttribute(required = true)
    protected String name;

    /**
     * Gets the value of the notificationChannelHost property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getNotificationChannelHost() {
        return notificationChannelHost;
    }

    /**
     * Sets the value of the notificationChannelHost property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setNotificationChannelHost(String value) {
        this.notificationChannelHost = value;
    }

    /**
     * Gets the value of the notificationChannelPort property.
     * 
     */
    public int getNotificationChannelPort() {
        return notificationChannelPort;
    }

    /**
     * Sets the value of the notificationChannelPort property.
     * 
     */
    public void setNotificationChannelPort(int value) {
        this.notificationChannelPort = value;
    }

    /**
     * Gets the value of the transportProtocol property.
     * 
     * @return
     *     possible object is
     *     {@link TransportProtocol }
     *     
     */
    public TransportProtocol getTransportProtocol() {
        return transportProtocol;
    }

    /**
     * Sets the value of the transportProtocol property.
     * 
     * @param value
     *     allowed object is
     *     {@link TransportProtocol }
     *     
     */
    public void setTransportProtocol(TransportProtocol value) {
        this.transportProtocol = value;
    }

    /**
     * Gets the value of the notificationChannelMode property.
     * 
     * @return
     *     possible object is
     *     {@link NotificationChannelMode }
     *     
     */
    public NotificationChannelMode getNotificationChannelMode() {
        return notificationChannelMode;
    }

    /**
     * Sets the value of the notificationChannelMode property.
     * 
     * @param value
     *     allowed object is
     *     {@link NotificationChannelMode }
     *     
     */
    public void setNotificationChannelMode(NotificationChannelMode value) {
        this.notificationChannelMode = value;
    }

    /**
     * Gets the value of the sources property.
     * 
     * @return
     *     possible object is
     *     {@link Sources }
     *     
     */
    public Sources getSources() {
        return sources;
    }

    /**
     * Sets the value of the sources property.
     * 
     * @param value
     *     allowed object is
     *     {@link Sources }
     *     
     */
    public void setSources(Sources value) {
        this.sources = value;
    }

    /**
     * Gets the value of the notificationTriggers property.
     * 
     * @return
     *     possible object is
     *     {@link NotificationTriggers }
     *     
     */
    public NotificationTriggers getNotificationTriggers() {
        return notificationTriggers;
    }

    /**
     * Sets the value of the notificationTriggers property.
     * 
     * @param value
     *     allowed object is
     *     {@link NotificationTriggers }
     *     
     */
    public void setNotificationTriggers(NotificationTriggers value) {
        this.notificationTriggers = value;
    }

    /**
     * Gets the value of the dataSelector property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getDataSelector() {
        return dataSelector;
    }

    /**
     * Sets the value of the dataSelector property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setDataSelector(String value) {
        this.dataSelector = value;
    }

    /**
     * Gets the value of the name property.
     * 
     * @return
     *     possible object is
     *     {@link String }
     *     
     */
    public String getName() {
        return name;
    }

    /**
     * Sets the value of the name property.
     * 
     * @param value
     *     allowed object is
     *     {@link String }
     *     
     */
    public void setName(String value) {
        this.name = value;
    }


    /**
     * <p>Java class for anonymous complex type.
     * 
     * <p>The following schema fragment specifies the expected content contained within this class.
     * 
     * <pre>
     * &lt;complexType>
     *   &lt;complexContent>
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       &lt;sequence maxOccurs="unbounded">
     *         &lt;element name="triggerName" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "triggerName"
    })
    public static class NotificationTriggers {

        protected List<String> triggerName;

        /**
         * Gets the value of the triggerName property.
         * 
         * <p>
         * This accessor method returns a reference to the live list,
         * not a snapshot. Therefore any modification you make to the
         * returned list will be present inside the JAXB object.
         * This is why there is not a <CODE>set</CODE> method for the triggerName property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getTriggerName().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link String }
         * 
         * 
         */
        public List<String> getTriggerName() {
            if (triggerName == null) {
                triggerName = new ArrayList<String>();
            }
            return this.triggerName;
        }

    }


    /**
     * <p>Java class for anonymous complex type.
     * 
     * <p>The following schema fragment specifies the expected content contained within this class.
     * 
     * <pre>
     * &lt;complexType>
     *   &lt;complexContent>
     *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
     *       &lt;sequence maxOccurs="unbounded">
     *         &lt;element name="source" type="{http://www.w3.org/2001/XMLSchema}string"/>
     *       &lt;/sequence>
     *     &lt;/restriction>
     *   &lt;/complexContent>
     * &lt;/complexType>
     * </pre>
     * 
     * 
     */
    @XmlAccessorType(XmlAccessType.FIELD)
    @XmlType(name = "", propOrder = {
        "source"
    })
    public static class Sources {

        protected List<String> source;

        /**
         * Gets the value of the source property.
         * 
         * <p>
         * This accessor method returns a reference to the live list,
         * not a snapshot. Therefore any modification you make to the
         * returned list will be present inside the JAXB object.
         * This is why there is not a <CODE>set</CODE> method for the source property.
         * 
         * <p>
         * For example, to add a new item, do as follows:
         * <pre>
         *    getSource().add(newItem);
         * </pre>
         * 
         * 
         * <p>
         * Objects of the following type(s) are allowed in the list
         * {@link String }
         * 
         * 
         */
        public List<String> getSource() {
            if (source == null) {
                source = new ArrayList<String>();
            }
            return this.source;
        }

    }

}

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
国产精品1区2区3区在线观看| 欧美丰满少妇xxxxx高潮对白| 最新国产の精品合集bt伙计| 91丨九色丨蝌蚪丨老版| 一区二区三区高清| 制服丝袜亚洲播放| 国产在线播放一区| 国产精品久久毛片a| 91视频你懂的| 午夜久久久久久久久久一区二区| 欧美精品日韩精品| 黄色日韩网站视频| 国产精品久久午夜| 欧美性猛片aaaaaaa做受| 日本视频一区二区三区| 国产视频一区在线播放| 97超碰欧美中文字幕| 亚洲国产精品久久一线不卡| 日韩精品一区二区三区中文不卡| 国产成人aaaa| 一区二区三区在线免费观看| 91精品在线麻豆| 国产麻豆成人传媒免费观看| 国产成人av资源| 亚洲男人的天堂在线aⅴ视频| 欧美日韩国产小视频| 久久精品99久久久| 1024成人网色www| 欧美日本国产一区| 国产剧情av麻豆香蕉精品| 亚洲欧美日韩久久| 日韩亚洲欧美高清| 不卡一区二区三区四区| 天堂一区二区在线| 日本一区二区综合亚洲| 欧美日韩成人高清| 国产精品影视在线观看| 一区二区三区美女| 精品国精品国产尤物美女| 一本大道av一区二区在线播放| 美女脱光内衣内裤视频久久影院| 亚洲国产成人一区二区三区| 欧美日本高清视频在线观看| 粉嫩13p一区二区三区| 日韩影视精彩在线| 国产精品久久久久aaaa| 欧美一区二区三区四区久久| 成人的网站免费观看| 日本不卡一二三| 一区在线中文字幕| 精品国一区二区三区| 色综合中文字幕国产 | 精品一区二区影视| 亚洲色图丝袜美腿| 精品粉嫩aⅴ一区二区三区四区 | 在线欧美日韩精品| 国产传媒一区在线| 奇米色一区二区| 一区二区理论电影在线观看| 久久久精品综合| 日韩一级在线观看| 欧美在线视频日韩| 成人免费毛片aaaaa**| 麻豆freexxxx性91精品| 亚洲综合久久久| 欧美韩日一区二区三区四区| 日韩亚洲欧美综合| 在线视频一区二区三区| 成人一级视频在线观看| 蜜桃精品视频在线观看| 亚洲电影第三页| 亚洲免费观看高清在线观看| 国产拍揄自揄精品视频麻豆| 精品乱码亚洲一区二区不卡| 欧美日韩国产首页| 日本精品视频一区二区| 久久综合九色综合欧美就去吻| 欧美日韩国产经典色站一区二区三区 | 成人动漫一区二区在线| 国内成人免费视频| 秋霞午夜av一区二区三区| 亚洲高清视频在线| 亚洲另类在线制服丝袜| 中文字幕一区二区三区四区不卡| 久久精品视频一区| 精品第一国产综合精品aⅴ| 这里只有精品免费| 欧美一a一片一级一片| 91视频xxxx| 99久久婷婷国产综合精品| 风间由美一区二区av101| 激情五月播播久久久精品| 青青国产91久久久久久| 五月婷婷久久综合| 亚洲无线码一区二区三区| 一区二区三区蜜桃网| 亚洲精品日韩专区silk| 亚洲精品美国一| 伊人性伊人情综合网| 亚洲人亚洲人成电影网站色| 亚洲欧洲无码一区二区三区| 精品国产自在久精品国产| 日韩女优毛片在线| 精品欧美乱码久久久久久 | 欧美精彩视频一区二区三区| 久久久久国产免费免费 | 国产精品高潮呻吟| 中文字幕亚洲视频| 亚洲欧美在线视频观看| 亚洲久草在线视频| 亚洲一区二区三区四区在线免费观看| 一级女性全黄久久生活片免费| 亚洲一区二区四区蜜桃| 亚洲狠狠爱一区二区三区| 亚洲成人自拍偷拍| 日日摸夜夜添夜夜添国产精品| 日产国产高清一区二区三区| 免费在线一区观看| 国产麻豆视频精品| 成人高清视频在线| 日本国产一区二区| 欧美三级中文字| 欧美电影在线免费观看| 日韩一级精品视频在线观看| 欧美精品一区二区三区蜜桃 | 久久视频一区二区| 激情国产一区二区| 国产精品18久久久久久久久| 成人国产免费视频| 欧洲精品一区二区三区在线观看| 欧美日韩精品二区第二页| 欧美一级一区二区| 久久久一区二区三区捆绑**| 中文字幕不卡在线观看| 亚洲欧美日韩久久| 日韩精品一二三区| 国产做a爰片久久毛片| 成人精品视频一区二区三区 | 欧美视频你懂的| 欧美一级一区二区| 国产欧美精品一区二区色综合| 专区另类欧美日韩| 亚洲第一搞黄网站| 国产一区免费电影| 91小视频在线| 8v天堂国产在线一区二区| 久久亚洲综合色| 亚洲女性喷水在线观看一区| 日韩成人免费看| 国产精品一区二区黑丝| 色域天天综合网| 日韩一卡二卡三卡| 国产精品初高中害羞小美女文| 亚洲国产精品视频| 国产精品一区三区| 日本韩国一区二区三区| 欧美电影精品一区二区| √…a在线天堂一区| 日本不卡一区二区三区| 不卡免费追剧大全电视剧网站| 欧美色老头old∨ideo| 精品国产91久久久久久久妲己| 亚洲色图色小说| 开心九九激情九九欧美日韩精美视频电影| 夫妻av一区二区| 777a∨成人精品桃花网| 欧美激情中文不卡| 亚洲v中文字幕| 国产成人精品免费| 欧美群妇大交群中文字幕| 国产日产精品1区| 五月天一区二区| 成人午夜在线视频| 欧美一区二区三区在线观看视频| 国产精品乱人伦中文| 日本在线不卡视频| 91麻豆福利精品推荐| 精品电影一区二区| 亚洲电影视频在线| 成人18视频日本| 精品久久久久久久一区二区蜜臀| 亚洲免费观看高清完整版在线观看熊 | 粉嫩欧美一区二区三区高清影视| 欧美自拍丝袜亚洲| 国产清纯在线一区二区www| 天堂蜜桃91精品| 91免费视频网址| 国产三区在线成人av| 三级一区在线视频先锋 | 麻豆精品视频在线观看| 日本乱人伦aⅴ精品| 久久精品视频免费观看| 日韩国产欧美在线视频| 91蝌蚪porny九色| 国产喂奶挤奶一区二区三区| 日韩电影免费一区| 色婷婷综合在线| 国产精品天干天干在观线| 国内精品伊人久久久久av一坑| 欧美区在线观看|