Projet

Général

Profil

Télécharger (1,43 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 Unsubscribe complex type.
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="Unsubscribe">
* &lt;complexContent>
* &lt;restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
* &lt;sequence>
* &lt;element name="subscriptionID" type="{http://www.w3.org/2001/XMLSchema}string"/>
* &lt;/sequence>
* &lt;/restriction>
* &lt;/complexContent>
* &lt;/complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "Unsubscribe", propOrder = { "subscriptionID" })
public class Unsubscribe {

@XmlElement(required = true)
protected String subscriptionID;

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

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

}
(82-82/91)