dataselectorreply.java

来自「关于 RFID 读写器的相关内容」· Java 代码 · 共 479 行

JAVA
479
字号
/*
 * 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.05 at 05:26:35 PM CEST 
//


package org.fosstrak.reader.rprm.core.msg.reply;

import javax.xml.bind.annotation.XmlAccessType;
import javax.xml.bind.annotation.XmlAccessorType;
import javax.xml.bind.annotation.XmlAnyElement;
import javax.xml.bind.annotation.XmlType;

import org.fosstrak.reader.rprm.core.msg.reply.DataSelectorReply;
import org.fosstrak.reader.rprm.core.msg.reply.DataSelectorReturnType;
import org.fosstrak.reader.rprm.core.msg.reply.EventTypeListReturnValue;
import org.fosstrak.reader.rprm.core.msg.reply.FieldNameListReturnType;
import org.fosstrak.reader.rprm.core.msg.reply.NoParamType;
import org.fosstrak.reader.rprm.core.msg.reply.StringListReturnType;
import org.fosstrak.reader.rprm.core.msg.reply.StringReturnType;
import org.w3c.dom.Element;


/**
 * <p>Java class for DataSelectorReply complex type.
 * 
 * <p>The following schema fragment specifies the expected content contained within this class.
 * 
 * <pre>
 * &lt;complexType name="DataSelectorReply">
 *   &lt;complexContent>
 *     &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       &lt;choice>
 *         &lt;element name="create" type="{urn:epcglobal:rp:xsd:1}DataSelectorReturnType"/>
 *         &lt;element name="getName" type="{urn:epcglobal:rp:xsd:1}stringReturnType"/>
 *         &lt;element name="addFieldNames" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="removeFieldNames" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="removeAllFieldNames" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="getAllFieldNames" type="{urn:epcglobal:rp:xsd:1}FieldNameListReturnType"/>
 *         &lt;element name="addEventFilters" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="removeEventFilters" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="removeAllEventFilters" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="getAllEventFilters" type="{urn:epcglobal:rp:xsd:1}EventTypeListReturnValue"/>
 *         &lt;element name="addTagFieldNames" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="removeTagFieldNames" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="removeAllTagFieldNames" type="{urn:epcglobal:rp:xsd:1}noParamType"/>
 *         &lt;element name="getAllTagFieldNames" type="{urn:epcglobal:rp:xsd:1}StringListReturnType"/>
 *         &lt;any/>
 *       &lt;/choice>
 *     &lt;/restriction>
 *   &lt;/complexContent>
 * &lt;/complexType>
 * </pre>
 * 
 * 
 */
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "DataSelectorReply", propOrder = {
    "create",
    "getName",
    "addFieldNames",
    "removeFieldNames",
    "removeAllFieldNames",
    "getAllFieldNames",
    "addEventFilters",
    "removeEventFilters",
    "removeAllEventFilters",
    "getAllEventFilters",
    "addTagFieldNames",
    "removeTagFieldNames",
    "removeAllTagFieldNames",
    "getAllTagFieldNames",
    "any"
})
public class DataSelectorReply {

    protected DataSelectorReturnType create;
    protected StringReturnType getName;
    protected NoParamType addFieldNames;
    protected NoParamType removeFieldNames;
    protected NoParamType removeAllFieldNames;
    protected FieldNameListReturnType getAllFieldNames;
    protected NoParamType addEventFilters;
    protected NoParamType removeEventFilters;
    protected NoParamType removeAllEventFilters;
    protected EventTypeListReturnValue getAllEventFilters;
    protected NoParamType addTagFieldNames;
    protected NoParamType removeTagFieldNames;
    protected NoParamType removeAllTagFieldNames;
    protected StringListReturnType getAllTagFieldNames;
    @XmlAnyElement(lax = true)
    protected Object any;

    /**
     * Gets the value of the create property.
     * 
     * @return
     *     possible object is
     *     {@link DataSelectorReturnType }
     *     
     */
    public DataSelectorReturnType getCreate() {
        return create;
    }

    /**
     * Sets the value of the create property.
     * 
     * @param value
     *     allowed object is
     *     {@link DataSelectorReturnType }
     *     
     */
    public void setCreate(DataSelectorReturnType value) {
        this.create = value;
    }

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

    /**
     * Sets the value of the getName property.
     * 
     * @param value
     *     allowed object is
     *     {@link StringReturnType }
     *     
     */
    public void setGetName(StringReturnType value) {
        this.getName = value;
    }

    /**
     * Gets the value of the addFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getAddFieldNames() {
        return addFieldNames;
    }

    /**
     * Sets the value of the addFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setAddFieldNames(NoParamType value) {
        this.addFieldNames = value;
    }

    /**
     * Gets the value of the removeFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getRemoveFieldNames() {
        return removeFieldNames;
    }

    /**
     * Sets the value of the removeFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setRemoveFieldNames(NoParamType value) {
        this.removeFieldNames = value;
    }

    /**
     * Gets the value of the removeAllFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getRemoveAllFieldNames() {
        return removeAllFieldNames;
    }

    /**
     * Sets the value of the removeAllFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setRemoveAllFieldNames(NoParamType value) {
        this.removeAllFieldNames = value;
    }

    /**
     * Gets the value of the getAllFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link FieldNameListReturnType }
     *     
     */
    public FieldNameListReturnType getGetAllFieldNames() {
        return getAllFieldNames;
    }

    /**
     * Sets the value of the getAllFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link FieldNameListReturnType }
     *     
     */
    public void setGetAllFieldNames(FieldNameListReturnType value) {
        this.getAllFieldNames = value;
    }

    /**
     * Gets the value of the addEventFilters property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getAddEventFilters() {
        return addEventFilters;
    }

    /**
     * Sets the value of the addEventFilters property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setAddEventFilters(NoParamType value) {
        this.addEventFilters = value;
    }

    /**
     * Gets the value of the removeEventFilters property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getRemoveEventFilters() {
        return removeEventFilters;
    }

    /**
     * Sets the value of the removeEventFilters property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setRemoveEventFilters(NoParamType value) {
        this.removeEventFilters = value;
    }

    /**
     * Gets the value of the removeAllEventFilters property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getRemoveAllEventFilters() {
        return removeAllEventFilters;
    }

    /**
     * Sets the value of the removeAllEventFilters property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setRemoveAllEventFilters(NoParamType value) {
        this.removeAllEventFilters = value;
    }

    /**
     * Gets the value of the getAllEventFilters property.
     * 
     * @return
     *     possible object is
     *     {@link EventTypeListReturnValue }
     *     
     */
    public EventTypeListReturnValue getGetAllEventFilters() {
        return getAllEventFilters;
    }

    /**
     * Sets the value of the getAllEventFilters property.
     * 
     * @param value
     *     allowed object is
     *     {@link EventTypeListReturnValue }
     *     
     */
    public void setGetAllEventFilters(EventTypeListReturnValue value) {
        this.getAllEventFilters = value;
    }

    /**
     * Gets the value of the addTagFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getAddTagFieldNames() {
        return addTagFieldNames;
    }

    /**
     * Sets the value of the addTagFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setAddTagFieldNames(NoParamType value) {
        this.addTagFieldNames = value;
    }

    /**
     * Gets the value of the removeTagFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getRemoveTagFieldNames() {
        return removeTagFieldNames;
    }

    /**
     * Sets the value of the removeTagFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setRemoveTagFieldNames(NoParamType value) {
        this.removeTagFieldNames = value;
    }

    /**
     * Gets the value of the removeAllTagFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link NoParamType }
     *     
     */
    public NoParamType getRemoveAllTagFieldNames() {
        return removeAllTagFieldNames;
    }

    /**
     * Sets the value of the removeAllTagFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link NoParamType }
     *     
     */
    public void setRemoveAllTagFieldNames(NoParamType value) {
        this.removeAllTagFieldNames = value;
    }

    /**
     * Gets the value of the getAllTagFieldNames property.
     * 
     * @return
     *     possible object is
     *     {@link StringListReturnType }
     *     
     */
    public StringListReturnType getGetAllTagFieldNames() {
        return getAllTagFieldNames;
    }

    /**
     * Sets the value of the getAllTagFieldNames property.
     * 
     * @param value
     *     allowed object is
     *     {@link StringListReturnType }
     *     
     */
    public void setGetAllTagFieldNames(StringListReturnType value) {
        this.getAllTagFieldNames = value;
    }

    /**
     * Gets the value of the any property.
     * 
     * @return
     *     possible object is
     *     {@link Element }
     *     {@link Object }
     *     
     */
    public Object getAny() {
        return any;
    }

    /**
     * Sets the value of the any property.
     * 
     * @param value
     *     allowed object is
     *     {@link Element }
     *     {@link Object }
     *     
     */
    public void setAny(Object value) {
        this.any = value;
    }

}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?