Projet

Général

Profil

Télécharger (1,41 ko) Statistiques
| Branche: | Tag: | Révision:
package org.fosstrak.epcis.model;

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

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

@XmlElement(required = true)
protected String queryName;

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

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

}
(40-40/91)