Projet

Général

Profil

Télécharger (1,9 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.XmlAttribute;
import javax.xml.bind.annotation.XmlType;
import javax.xml.bind.annotation.XmlValue;

/**
* <p>
* Java class for BusinessTransactionType complex type.
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="BusinessTransactionType">
* &lt;simpleContent>
* &lt;extension base="&lt;urn:epcglobal:epcis:xsd:1>BusinessTransactionIDType">
* &lt;attribute name="type" type="{urn:epcglobal:epcis:xsd:1}BusinessTransactionTypeIDType" />
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "BusinessTransactionType", namespace = "urn:epcglobal:epcis:xsd:1", propOrder = { "value" })
public class BusinessTransactionType {

@XmlValue
protected String value;
@XmlAttribute(name = "type")
protected String type;

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

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

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

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

}
(11-11/91)