Projet

Général

Profil

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

/**
* EPC represents the Electronic Product Code.
* <p>
* Java class for EPC complex type.
* <p>
* The following schema fragment specifies the expected content contained within
* this class.
*
* <pre>
* &lt;complexType name="EPC">
* &lt;simpleContent>
* &lt;extension base="&lt;http://www.w3.org/2001/XMLSchema>string">
* &lt;/extension>
* &lt;/simpleContent>
* &lt;/complexType>
* </pre>
*/
@XmlAccessorType(XmlAccessType.FIELD)
@XmlType(name = "EPC", namespace = "urn:epcglobal:xsd:1", propOrder = { "value" })
public class EPC {

@XmlValue
protected String value;

/**
* 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;
}

}
(18-18/91)